@uiw/react-native
Version:
UIW for React Native
19 lines (18 loc) • 424 B
JavaScript
import React from 'react';
import { View, StyleSheet } from 'react-native';
export default class Item extends React.Component {
render() {
return <View style={styles.item}>{this.props.children}</View>;
}
}
const styles = StyleSheet.create({
item: {
minHeight: 30,
display: 'flex',
justifyContent: 'center',
paddingLeft: 5,
paddingRight: 5,
backgroundColor: '#fff',
zIndex: 1000
}
});