manx-easy
v0.1.1
Published
easily build react-native app
Downloads
4
Readme
react-native-easy
easily build react-native app
Installation
npm install react-native-easy
Usage
import {
VStack,
Main,
Text,
Group,
} from 'react-native-easy';
// ...
export default function App() {
return (
<SafeAreaView style={styles.container}>
<Main themeColor={colors}>
<VStack color="backgroundColor" style={styles.container}>
<Group title="List" data={data} divider/>
<Group title="I CAN DO IT" data={data} divider/>
</VStack>
<View style={{}} />
</Main>
</SafeAreaView>
);
}
const colors = {
light: {
backgroundColor: '#fff',
text: '#000',
},
dark: {
backgroundColor: '#000',
text: '#fff',
},
};
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library