fix component

- buttom radius valuenya constans
- perbaikan bottom pada auth file
This commit is contained in:
2025-07-03 17:05:53 +08:00
parent 7b58e3315f
commit f5cf9e1549
6 changed files with 57 additions and 46 deletions

View File

@@ -8,6 +8,10 @@ import { Text, View } from "react-native";
import { OtpInput } from "react-native-otp-entry";
export default function VerificationView() {
const handleVerification = () => {
console.log("Verification clicked");
router.push("/register");
};
return (
<>
<ViewWrapper withBackground>
@@ -48,12 +52,12 @@ export default function VerificationView() {
</View>
<ButtonCustom
title="Verifikasi"
backgroundColor={MainColor.yellow}
textColor={MainColor.black}
radius={10}
onPress={() => router.push("/register")}
/>
onPress={() => handleVerification()}
>
Verifikasi
</ButtonCustom>
</View>
</ViewWrapper>
</>