Implemented downloading popup

This commit is contained in:
anil_majji
2023-03-14 16:36:20 +05:30
committed by Sri Kanth Kola
parent 43f0fb0543
commit e5db0151d9
2 changed files with 9 additions and 13 deletions

View File

@@ -292,6 +292,13 @@ export const DefaultTheme = {
flex: 1,
padding: 10,
},
profileIconBg: {
padding: 8,
width: 40,
height: 40,
borderRadius: 6,
backgroundColor: Colors.LightOrange,
},
domainVerifiyIcon: {
padding: 20,
marginLeft: 120,
@@ -408,7 +415,6 @@ export const DefaultTheme = {
},
regular: {
fontSize: 14,
fontFamily: 'Inter_400Regular',
},
semibold: {
fontFamily: 'Inter_600SemiBold',
@@ -489,7 +495,7 @@ export const DefaultTheme = {
},
gradient: {
borderRadius: 9,
width: '88%',
width: '93%',
alignSelf: 'center',
margin: 4,
},
@@ -635,16 +641,6 @@ export const DefaultTheme = {
borderRadius: 15,
margin: -13.5,
},
kebabPopUp: {
marginHorizontal: 4,
},
kebabHeaderStyle: {
backgroundColor: 'white',
borderTopLeftRadius: 30,
borderTopRightRadius: 24,
padding: 15,
justifyContent: 'space-between',
},
button: {
borderTopLeftRadius: 0,
borderTopRightRadius: 0,

View File

@@ -9,7 +9,7 @@ import { Image, TouchableOpacity } from 'react-native';
export const OtpVerificationModal: React.FC<OtpVerificationModalProps> = (
props
) => {
const { t } = useTranslation('OtpVerificationModal');
const { t } = useTranslation('OtpVerification');
return (
<Modal isVisible={props.isVisible} onDismiss={props.onDismiss}>