login screen done
This commit is contained in:
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user