0.0.1 • Published 3 years ago

react-native-block v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

react-native-block

A simple and customizable wrapper component for React Native View.

Usage

Instead of writing this :

<View style={{ flex: 2, justifyContent: 'center', alignItems: 'center', marginTop: 20 }}>
  //Other components
</View>

You can just do this :

<Block flex={2} center middle mt={20}>
  // Your components
</Block>

For TouchableOpacity :

<TouchableBlock onPress={handler} center middle>
  // Your components
</TouchableBlock>