- Library UI component designed for React Native & Expo applications.
- A set of high-quality React Native components out of the box
- Written in TypeScript with predictable static types.
- Whole package of design resources and development tools.
- Powerful theme customization based on StyleSheet.
- React Native
- Expo
` #npm npm install @bsdaoquang/rncomponent react-native-vector-icons
#yarn yarn add @bsdaoquang/rncomponent react-native-vector-icons`
iOS
cd ios pod install
#npm npx expo install @bsdaoquang/rncomponent react-native-vector-icons
import { View, Text } from 'react-native';
import React from 'react';
import {Card} from '@bsdaoquang/rncomponent';
const App = () => {
return (
<View>
<Card>
<Text>Hello world</Text>
</Card>
</View>
);
};
export default App;