You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
547 B

3 weeks ago
import { Input, InputField } from "@/components/ui/input";
import { Text } from "@/components/ui/text";
import { VStack } from "@/components/ui/vstack";
import { Link } from "expo-router";
import { View } from "react-native";
export default function HomeTab() {
return (
<View className="flex-1 p-6 bg-white">
<VStack className="gap-4">
<Text className="font-bold">Home </Text>
<Input>
<InputField placeholder="ID (예: 1)" keyboardType="number-pad" />
</Input>
</VStack>
</View>
);
}