import { Button } from '@/components/ui/button';
import { Icon } from '@/components/ui/icon';
import { THEME } from '@/lib/theme';
import Hero from '@/components/interfaces/hero';
import { Stack } from 'expo-router';
import { MoonStarIcon, SunIcon } from 'lucide-react-native';
import { useColorScheme } from 'nativewind';
import * as React from 'react';
import { ScrollView } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
const SCREEN_OPTIONS = {
light: {
title: 'Devanthos',
headerTransparent: true,
headerShadowVisible: true,
headerStyle: { backgroundColor: THEME.light.background },
headerRight: () => ,
},
dark: {
title: 'Devanthos',
headerTransparent: true,
headerShadowVisible: true,
headerStyle: { backgroundColor: THEME.dark.background },
headerRight: () => ,
},
};
export default function Screen() {
const { colorScheme } = useColorScheme();
return (
<>
>
);
}
const THEME_ICONS = {
light: SunIcon,
dark: MoonStarIcon,
};
function ThemeToggle() {
const { colorScheme, toggleColorScheme } = useColorScheme();
return (
);
}