fix: tampilan verification code

This commit is contained in:
amel
2025-03-19 10:43:17 +08:00
parent a8b701a292
commit 632cd2325e

View File

@@ -2,7 +2,7 @@ import { ButtonForm } from "@/components/buttonForm";
import Styles from "@/constants/Styles";
import { router } from "expo-router";
import React, { useState } from "react";
import { Image, SafeAreaView, Text, View } from "react-native";
import { Image, Text, View } from "react-native";
import { CodeField, Cursor, useBlurOnFulfill, useClearByFocusCell, } from 'react-native-confirmation-code-field';
export default function Index() {
@@ -15,7 +15,7 @@ export default function Index() {
return (
<SafeAreaView style={Styles.wrapLogin} >
<View style={Styles.wrapLogin} >
<View style={{ alignItems: "center", marginVertical: 50 }}>
<Image
source={require("../assets/images/splash-icon.png")}
@@ -49,6 +49,6 @@ export default function Index() {
<Text style={[Styles.textInformation, Styles.mt05, Styles.cDefault, { textAlign: 'center' }]}>
Tidak Menerima kode verifikasi? Kirim Ulang
</Text>
</SafeAreaView>
</View>
);
}