Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 478 Bytes

README.md

File metadata and controls

22 lines (21 loc) · 478 Bytes

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>