login screen done

This commit is contained in:
2025-06-25 16:36:17 +05:30
parent f0a87b818b
commit 2d901a407a
5 changed files with 13 additions and 17 deletions
+6 -6
View File
@@ -1,6 +1,6 @@
import {View,Text,TextInput,StyleSheet,} from 'react-native';
import React, {useState} from 'react';
import {GlobalTheme} from '../theme';
import { View, Text, TextInput, StyleSheet, } from 'react-native';
import React, { useState } from 'react';
import { GlobalTheme } from '../theme';
const CustomTextInput = ({
label,
@@ -25,9 +25,9 @@ const CustomTextInput = ({
};
const inputStyle = {
borderColor: isFocused ? '#2680EB' : 'transparent',
borderWidth: 2,
backgroundColor: isFocused ? '#FFF' : '#F1F1F1',
borderColor: isFocused ? '#2680EB' : '#DFDFDF',
borderWidth: isFocused ? 2 : 1,
backgroundColor: isFocused ? '#FFF' : '#Fff',
borderRadius: GlobalTheme.borderRadius.md,
};