Your music, beautifully tracked. All yours. (coming soon)
teal.fm
teal-fm
atproto
1import { Text } from "@/components/ui/text";
2import { useColorScheme } from "nativewind";
3
4export default function ToggleTheme() {
5 const { colorScheme, setColorScheme } = useColorScheme();
6
7 return (
8 <Text
9 onPress={() => setColorScheme(colorScheme === "light" ? "dark" : "light")}
10 >
11 {`The color scheme is ${colorScheme}`}
12 </Text>
13 );
14}