A simple semantic layout for react-native.
yarn add react-native-simple-layoutnpm i react-native-simple-layoutfunctionRectList(){return(<><Recttext={1}style={{backgroundColor: 'red'}}/><Recttext={2}style={{backgroundColor: 'green'}}/><Recttext={3}style={{backgroundColor: 'blue'}}/></>);}import{Row}from'react-native-simple-layout';functionRowExample(){return(<Row><RectList/></Row>);}import{Column}from'react-native-simple-layout';functionColumnExample(){return(<Column><RectList/></Column>);}import{Row,Stack}from'react-native-simple-layout';functionStackExample(){return(<Row><Recttext={1}/><Stackstyle={{left: 30,top: 30}}><Recttext={2}style={{backgroundColor: 'green'}}/><Stackstyle={{left: 30,top: 30}}><Recttext={3}style={{backgroundColor: 'blue'}}/></Stack></Stack></Row>);}


