UNPKG

@uiw/react-native

Version:
16 lines 385 B
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 } });