verify screen - done

This commit is contained in:
2025-06-26 11:15:14 +05:30
parent 9eb0c3eb2b
commit fb0c62e0dc
10 changed files with 148 additions and 48 deletions
+3 -4
View File
@@ -1,6 +1,6 @@
import { View, Text, TextInput, StyleSheet, } from 'react-native';
import React, { useState } from 'react';
import { GlobalTheme } from '../theme';
import { GlobalTheme, Screen } from '../theme';
const CustomTextInput = ({
label,
@@ -39,7 +39,7 @@ const CustomTextInput = ({
fontSize: GlobalTheme.typography.fontSize.medium,
fontWeight: GlobalTheme.typography.fontWeight.medium,
marginTop: 10,
marginHorizontal: 10,
marginHorizontal: 0,
...textstyle,
}}>
{label}
@@ -47,7 +47,7 @@ const CustomTextInput = ({
<View
style={{
borderRadius: GlobalTheme.borderRadius.lgg,
borderWidth: 6,
// borderWidth: 6,
borderColor: isFocused ? '#DFECFF' : 'transparent',
marginTop: 8,
...viewstyle,
@@ -77,7 +77,6 @@ const styles = StyleSheet.create({
height: 50,
borderWidth: 1,
padding: 10,
borderRadius: 4,
color: GlobalTheme.colors.black,
},
inputContainer: {