import React from 'react'; import {StyleSheet, Text, View} from 'react-native'; export default function Sandbox(){ return ( one two three four ) } const styles= StyleSheet.create({ container: { //flex: 1, flexDirection: 'row', justifyContent: 'space-around' , alignItems: 'flex-end', paddingTop: 40, backgroundColor: '#ddd', }, boxOne: { flex:5, backgroundColor: 'violet', padding:10, }, boxTwo: { flex:1, backgroundColor: 'gold', padding:20, }, boxThree: { flex:1, backgroundColor: 'coral', padding:30, }, boxFour: { flex:1, backgroundColor: 'skyblue', padding:40, } });