change background color react native
import React from 'react';
import { View } from 'react-native'
export default function App() {
return (
<View style={{ backgroundColor: "blue", flex: 1 }}> // this View element covers the entire screen thanks to "flex:1"
//Write the rest of the app here
</View>
)
}