upgrade to native wind v4

This commit is contained in:
Jorrin
2024-01-27 13:53:41 +01:00
parent 26a1b623e7
commit 4c634abc1e
21 changed files with 396 additions and 201 deletions

View File

@@ -1,22 +1,19 @@
import { Link, Stack } from 'expo-router';
import { StyledText, StyledView } from '../components/ui/Styled';
import { Text, View } from 'react-native';
export default function NotFoundScreen() {
return (
<>
<Stack.Screen options={{ title: 'Oops!' }} />
<StyledView className="flex-1 items-center justify-center p-5">
<StyledText className="text-lg font-bold">
<View className="flex-1 items-center justify-center p-5">
<Text className="text-lg font-bold">
This screen doesn&apos;t exist.
</StyledText>
</Text>
<Link href="/" className="mt-4 py-4">
<StyledText className="text-sm text-sky-500">
Go to home screen!
</StyledText>
<Text className="text-sm text-sky-500">Go to home screen!</Text>
</Link>
</StyledView>
</View>
</>
);
}