Skip to content

A UI component library based on React Native (Android & iOS).

License

Notifications You must be signed in to change notification settings

huqiaoli/react-native-uiw

 
 

Repository files navigation


React Native UIW

A UI component library based on React Native (Android & iOS).

快速上手 | 参与组件开发 | 参与文档/网站编辑开发 | 组件库

您可以使用我们制定的模版(@uiw/react-native-template)创建一个新项目:

# 此模板默认集成了一些必用的依赖,如路由,组件库等
npx react-native init AwesomeProject --template @uiw/react-native-template

Install

Basic Usage

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>
    )
  }
}

Other

Development

# 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

License

Licensed under the MIT License.

About

A UI component library based on React Native (Android & iOS).

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 84.1%
  • Java 6.4%
  • C++ 2.9%
  • Objective-C++ 1.8%
  • JavaScript 1.2%
  • Less 1.1%
  • Other 2.5%