A UI component library based on React Native (Android & iOS).
快速上手 | 参与组件开发 | 参与文档/网站编辑开发 | 组件库
yarn add @uiw/react-native [email protected] [email protected] @react-native-picker/[email protected] [email protected]
import React from 'react';
import { View } from 'react-native';
import { Icon } from '@uiw/react-native'
export default class Demo extends React.Component {
render() {
return (
<View>
<Icon name='apple' size={46} color='#50CB42' />
</View>
)
}
}
# Install current dependencies, and dependencies in sub-packages
yarn install
yarn run build # Compile package
Real-time monitoring of package and document website local preview
# Step 1
yarn run lib:watch # Compile and output JS file
# Step 2
yarn run lib:watch:type # Output type file d.ts
# Step 3
yarn run start # Run the preview document website locally
Licensed under the MIT License.