1.1.3 • Published 8 years ago
react-web v1.1.3

React Web 中文 
A library for building web apps with React Native compatible API.
Getting Started
Install
npm install --save react-webAdd Webpack configuration
Inside your webpack configuration, alias the react-native package to the react-web package:
// webpack.config.js
module.exports = {
resolve: {
alias: {
'react-native': 'react-web'
}
}
}Write your application with React Native API
import React, {Component} from 'react';
import {AppRegistry, StyleSheet, Text, View, Platform} from 'react-native';
class App extends 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);
if (Platform.OS === 'web') {
AppRegistry.runApplication('App', { rootTag: document.getElementById('app') });
}React Native Compatible
- ActivityIndicator
- ART
- Button
- CheckBox
- FlatList
- Image
- ImageBackground
- KeyboardAvoidingView
- ListView
- Modal
- Picker
- ProgressBar
- RefreshControl
- SafeAreaView
- ScrollView
- SectionList
- Slider
- StatusBar
- Switch
- Text
- TextInput
- Touchable
- TouchableHighlight
- TouchableNativeFeedback
- TouchableOpacity
- TouchableWithoutFeedback
- View
- VirtualizedList
- WebView
- findNodeHandle
- AccessibilityInfo
- Alert
- Animated
- AppRegistry
- AppState
- AsyncStorage
- BackHandler
- Clipboard
- Dimensions
- Easing
- Geolocation
- I18nManager
- InteractionManager
- Keyboard
- LayoutAnimation
- Linking
- NetInfo
- PanResponder
- PixelRatio
- Platform
- Settings
- StyleSheet
- UIManager
- Vibration
- processColor
- NativeModules
- ColorPropType
- EdgeInsetsPropType
- PointPropType
- ViewPropTypes
Project Dependencies
License
React Web is BSD licensed.
1.1.3
8 years ago
1.1.2
8 years ago
1.1.1
8 years ago
1.1.0
8 years ago
1.0.0
8 years ago
0.4.6
9 years ago
0.4.5
9 years ago
0.4.4
9 years ago
0.4.3
9 years ago
0.4.2
9 years ago
0.4.1
9 years ago
0.4.0
9 years ago
0.3.2
9 years ago
0.3.1
9 years ago
0.3.0
9 years ago
0.2.5
9 years ago
0.2.4
10 years ago
0.2.3
10 years ago
0.2.2
10 years ago
0.2.1
10 years ago
0.2.0
10 years ago
0.1.6
10 years ago
0.1.5
10 years ago
0.1.4
10 years ago
0.1.3
10 years ago
0.1.2
10 years ago
0.1.1
10 years ago
0.1.0
10 years ago
0.0.0
11 years ago