fix gluestackUI

This commit is contained in:
Patryk
2025-04-23 20:46:34 +02:00
parent b248aee33d
commit 877f232e98
62 changed files with 4571 additions and 3841 deletions

View File

@@ -1,21 +1,12 @@
import { Text, View, Pressable } from "react-native";
import { Link } from "expo-router";
import { Button, ButtonText } from "@/components/ui/button"
export default function Index() {
import { View, Text } from 'react-native';
import { Button, ButtonText } from '@/components/ui/button';
export default function Home(){
return (
<View>
<Link href="/notices" asChild>
<Pressable>
<Text>Notices</Text>
</Pressable>
</Link>
<Button size="md" variant="solid" action="primary">
<ButtonText>Zobacz ogłoszenie</ButtonText>
</Button>
<Text>Home</Text>
<Button>
<ButtonText>Click Me</ButtonText>
</Button>
</View>
);
}
}