-
Notifications
You must be signed in to change notification settings - Fork 0
NativeBase
flyw edited this page Jul 12, 2018
·
1 revision
NativeBase是一个免费的开源UI组件库,用于React Native为iOS和Android平台构建本机移动应用程序。
考虑是 ReactNative 中的 Bootstrap

文档地址 https://docs.nativebase.io/
Example:
Button
import React, { Component } from 'react';
import { Container, Header, Content, Button, Text } from 'native-base';
export default class ButtonThemeExample extends Component {
render() {
return (
<Container>
<Header />
<Content>
<Button primary><Text> Primary </Text></Button>
</Content>
</Container>
);
}
}注:其中涉及的组件,必须要 import 才可以用