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