home page initial ui implemented
This commit is contained in:
committed by
GitHub
parent
7f0d38eb3c
commit
b313417609
@@ -0,0 +1,16 @@
|
||||
import type { GoogleInputProps } from "@/types/type";
|
||||
import { Text, View } from "react-native";
|
||||
|
||||
export const GoogleTextInput = ({
|
||||
icon,
|
||||
initialLocation,
|
||||
containerStyles,
|
||||
textInputBackgroundColor,
|
||||
handlePress,
|
||||
}: GoogleInputProps) => (
|
||||
<View
|
||||
className={`flex flex-row items-center justify-center realtive z-50 rounded-xl mb-5 ${containerStyles}`}
|
||||
>
|
||||
<Text>Google Text Input</Text>
|
||||
</View>
|
||||
);
|
||||
Reference in New Issue
Block a user