React Native第三方组件react-native-elements

一、基础部分

1.1 安装

$ yarn add react-native-elements
# or with npm
$ npm install --save react-native-elements

1.2 使用

import { Button, ThemeProvider } from 'react-native-elements';

const MyApp = () => {
    return (
        <ThemeProvider>
            <Button title="Hello World!" />
        </ThemeProvider>
    )
}
文章作者: koral
文章链接: http://luokaiii.github.io/2020/06/19/前端/ReactNative/第三方组件/ReactNativeElements/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自