0.1.1 • Published 1 year ago

manx-easy v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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

0.1.1

1 year ago

0.1.0

1 year ago