UNPKG

@emcsistemas/native-ui

Version:
10 lines 365 B
import { View } from 'react-native'; import { makeBaseViewStyle } from '../../styles/styles.factory'; const EMCVStack = (props) => { let baseStyle = props.style ?? makeBaseViewStyle(props); return (<View style={[baseStyle, { flexDirection: 'column' }]}> {props.children} </View>); }; export default EMCVStack; //# sourceMappingURL=EMCVStack.js.map