import * as SystemUI from 'expo-system-ui';
import * as React from 'react';
import { ColorValue, ScrollView } from 'react-native';
import Button from '../components/Button';
import { Page, Section } from '../components/Page';
import { getRandomColor } from '../utilities/getRandomColor';
export default function SystemUIScreen() {
return (
);
}
SystemUIScreen.navigationOptions = {
title: 'System UI',
};
function BackgroundColorExample() {
const [color, setColor] = React.useState(null);
return (
<>