reactnative_mobilemk/app/signin.tsx

23 lines
821 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import {View, Text, SafeAreaView, ScrollView, Image} from "react-native";
import React from "react";
import images from "@/constants/images";
const SignIn = () => {
return (
<SafeAreaView className="bg-white h-full">
<ScrollView contentContainerClassName="h-full">
<Text className={"text-center text-gray-600 font-bold mt-10"}>Welcome to Mobile.mk</Text>
<Image source={images.collage} className="w-full h-4/6" resizeMode="contain"/>
<View className={"px-10"}>
<Text className={"text-3xl text-center text-gray-400"}>
Поблиску до вашиот {"\n"}
<Text>идеален автомобил</Text>
</Text>
</View>
</ScrollView>
</SafeAreaView>
);
};
export default SignIn;