Button:
Image在布局中的使用:
如果设置从网络获取图片,需要设置图片大小,否则显示不出来。
<View style={{flex: 1, flexDirection: 'row'}}>
<Image source={{uri: 'http://app.fengjr.com/public/dist/apk/res/img/finachan-1473762800726.png'}}
style={{width: 50, height: 50}} />
<View style={{width: 50, height: 50, backgroundColor: 'skyblue'}} />
<View style={{width: 50, height: 50, backgroundColor: 'steelblue'}} />
</View>
Toast:
ToastAndroid.show('This is a toast with short duration', ToastAndroid.SHORT)
AppRegistry:
AppRegistry.registerComponent('MyReactNativeApp', () => HelloWorldApp);
参数1:一般都为package里面的key
参数2:是你要注入的Component的
网友评论