changed backgound color

This commit is contained in:
moist-webDev 2023-05-22 21:22:55 -04:00
parent 504747e835
commit 4490a12dd9
1 changed files with 4 additions and 4 deletions

View File

@ -80,16 +80,16 @@ export default function App() {
</DataTable> </DataTable>
</View> </View>
<StatusBar style="auto" /> <StatusBar style="dark" />
</View> </View>
); );
} }
const styles = StyleSheet.create({ const styles = StyleSheet.create({
container: { container: {
marginTop: 50, paddingTop: 50,
flex: 1, flex: 1,
backgroundColor: '#fff', backgroundColor: '#80b',
alignItems: 'flex-end', alignItems: 'flex-end',
justifyContent: 'flex-start', justifyContent: 'flex-start',
}, },
@ -118,6 +118,6 @@ const styles = StyleSheet.create({
margin: 10, margin: 10,
borderWidth: 1, borderWidth: 1,
padding: 10, padding: 10,
backgroundColor: '#eee' backgroundColor: '#70a'
} }
}); });