import { useColorMode } from "@gluestack-ui/themed"
import { View } from "react-native"import { useColorMode } from "@gluestack-ui/themed"function Example() {const colorMode = useColorMode()return (<Viewstyle={{width: 100,height: 100,backgroundColor: colorMode === "light" ? "white" : "black",}}/>)}