All Projects → necolas → React Native Web

necolas / React Native Web

Licence: mit
React Native Components and APIs for the Web

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to React Native Web

React Stylesheet
Component based styling for your React applications
Stars: ✭ 150 (-99.23%)
Mutual labels:  react-components, css-in-js
Nano Component
Fast & simple React component styles in under 1kb
Stars: ✭ 202 (-98.97%)
Mutual labels:  react-components, css-in-js
React Free Style
Make React components easier and more maintainable by using inline style objects
Stars: ✭ 135 (-99.31%)
Mutual labels:  react-components, css-in-js
Snackui
SnackUI 🍑 - the final React style library. With an *optimizing compiler* that lets you write views naturally, with easier DX, working on native and web at once, all while being faster than hand-rolling your own CSS.
Stars: ✭ 55 (-99.72%)
Mutual labels:  react-native-web, css-in-js
React Awesome Reveal
React components to add reveal animations using the Intersection Observer API and CSS Animations.
Stars: ✭ 346 (-98.23%)
Mutual labels:  react-components, css-in-js
react-multiversal
React components that works everywhere (iOS, Android, Web, Node)
Stars: ✭ 43 (-99.78%)
Mutual labels:  react-components, react-native-web
Styled Bootstrap
💅🏻 A styled-component implementation of Bootstrap
Stars: ✭ 154 (-99.21%)
Mutual labels:  react-components, css-in-js
Match Media
Universal polyfill for match media API using Expo APIs on mobile
Stars: ✭ 95 (-99.51%)
Mutual labels:  react-native-web, css-in-js
Expo Dark Mode Switch
A beautiful React dark mode switch component for iOS, Android, and Web
Stars: ✭ 137 (-99.3%)
Mutual labels:  react-native-web, css-in-js
react-awesome-reveal
React components to add reveal animations using the Intersection Observer API and CSS Animations.
Stars: ✭ 564 (-97.12%)
Mutual labels:  react-components, css-in-js
Reactackle
Open-source components library built with React and Styled-Components.
Stars: ✭ 278 (-98.58%)
Mutual labels:  react-components, css-in-js
Wxwidgets
wxWidgets is a free and open source cross-platform C++ framework for writing advanced GUI applications using native controls.
Stars: ✭ 3,994 (-79.58%)
Mutual labels:  gui-framework
Reshadow
Markup and styles that feel right
Stars: ✭ 343 (-98.25%)
Mutual labels:  css-in-js
Lcui
A small C library for building user interfaces with C, XML and CSS.
Stars: ✭ 3,573 (-81.74%)
Mutual labels:  gui-framework
Reaptcha
Google reCAPTCHA v2 for React
Stars: ✭ 329 (-98.32%)
Mutual labels:  react-components
Hiui
HIUI is a solution that is adequate for the fomulation and implementation of interaction and UI design standard for front, middle and backend.
Stars: ✭ 366 (-98.13%)
Mutual labels:  react-components
React String Replace
A simple way to safely do string replacement with React components
Stars: ✭ 360 (-98.16%)
Mutual labels:  react-components
Next Shopify Storefront
🛍 A real-world Shopping Cart built with TypeScript, NextJS, React, Redux, Apollo Client, Shopify Storefront GraphQL API, ... and Material UI.
Stars: ✭ 317 (-98.38%)
Mutual labels:  css-in-js
Babel Plugin Tailwind Components
Use Tailwind with any CSS-in-JS library
Stars: ✭ 320 (-98.36%)
Mutual labels:  css-in-js
React Scope
Visualize your React components as you interact with your application.
Stars: ✭ 316 (-98.38%)
Mutual labels:  react-components

React Native for Web

npm version Build Status PRs Welcome

"React Native for Web" makes it possible to run React Native components and APIs on the web using React DOM.

Documentation

The documentation site covers installation, guides, and APIs.

Example

And here is a simple example to get you started. The example app includes interactive examples and the source code is also available.

import React from 'react';
import { AppRegistry, StyleSheet, Text, View } from 'react-native';

class App extends React.Component {
  render() {
    return (
      <View style={styles.box}>
        <Text style={styles.text}>Hello, world!</Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  box: { padding: 10 },
  text: { fontWeight: 'bold' }
});

AppRegistry.registerComponent('App', () => App);
AppRegistry.runApplication('App', { rootTag: document.getElementById('react-root') });

This example will render the App into a container on the page.

You'll notice that there is no reference to react-dom; the App component is defined using the platform-agnostic APIs and Components introduced by React Native. This allows the app to be rendered to web and native platforms.

Contributing

The main purpose of this repository is to help evolve React web and native development towards the platform-agnostic design of React Native, and in the process make it faster and easier to build high-quality experiences for the web with React. Development happens in the open on GitHub, and we are grateful for contributing bugfixes and improvements. Read below to learn how you can take part in improving React Native for Web.

Code of conduct

Facebook has adopted a Code of Conduct that this project expects all participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing guide

Read the contributing guide to learn about the development process, how to propose bugfixes and improvements, and how to build and test your changes to React Native for Web.

Good first issues

To help you get you familiar with the contribution process, there is a list of good first issues that contain bugs which have a relatively limited scope. This is a great place to get started.

License

React Native for Web is MIT licensed. By contributing to React Native for Web, you agree that your contributions will be licensed under its MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].