import React from 'react';
import { View, Text } from 'react-native';
export default function App() {
return (
<View style={{ flex: 1 }}>
<View style={{ backgroundColor: 'rgb(255, 198, 0)', flex: 1 }}>
<Text>Header</Text>
</View>
<View style={{ flex: 1, flexDirection: 'row' }}>
<View style={{ flex: 1, backgroundColor: '#38287F' }}>
<Text>1</Text>
</View>
<View style={{ flex: 2, backgroundColor: 'rgb(29,104,208)' }}>
<Text>2</Text>
</View>
</View>
<View style={{ backgroundColor: '#1DBEBE', flex: 1 }}>
<Text>Footer</Text>
</View>
</View>
);
}