From 68888a2a5a9689b46f3557bbb1a6b2b4f089b0ba Mon Sep 17 00:00:00 2001 From: Piyush Date: Wed, 26 Nov 2025 21:20:22 +0530 Subject: [PATCH 1/6] Replace FullScreenLoadingIndicator with ActivityIndicator in AddressSearch --- src/components/AddressSearch/index.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/AddressSearch/index.tsx b/src/components/AddressSearch/index.tsx index 259bdc5afd202..07d59a841a593 100644 --- a/src/components/AddressSearch/index.tsx +++ b/src/components/AddressSearch/index.tsx @@ -4,7 +4,6 @@ import type {LayoutChangeEvent} from 'react-native'; import {GooglePlacesAutocomplete} from 'react-native-google-places-autocomplete'; import type {GooglePlaceData, GooglePlaceDetail} from 'react-native-google-places-autocomplete'; import ActivityIndicator from '@components/ActivityIndicator'; -import FullScreenLoadingIndicator from '@components/FullscreenLoadingIndicator'; import LocationErrorMessage from '@components/LocationErrorMessage'; import ScrollView from '@components/ScrollView'; import Text from '@components/Text'; @@ -480,7 +479,12 @@ function AddressSearch({ - {isFetchingCurrentLocation && } + {isFetchingCurrentLocation && ( + + )} ); } From 91307dac567de5164f65bb39b2bf958ce4465d06 Mon Sep 17 00:00:00 2001 From: Piyush Date: Thu, 27 Nov 2025 14:17:32 +0530 Subject: [PATCH 2/6] remove style from ActivityIndicator --- src/components/AddressSearch/index.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/components/AddressSearch/index.tsx b/src/components/AddressSearch/index.tsx index 07d59a841a593..001d1497ccd21 100644 --- a/src/components/AddressSearch/index.tsx +++ b/src/components/AddressSearch/index.tsx @@ -479,12 +479,7 @@ function AddressSearch({ - {isFetchingCurrentLocation && ( - - )} + {isFetchingCurrentLocation && } ); } From edc0175f439461e22106242bf4170715e76ad0e8 Mon Sep 17 00:00:00 2001 From: Piyush Date: Fri, 28 Nov 2025 16:45:49 +0530 Subject: [PATCH 3/6] Added CONST.ACTIVITY_INDICATOR_SIZE.LARGE && styles.h100 --- src/components/AddressSearch/index.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/AddressSearch/index.tsx b/src/components/AddressSearch/index.tsx index 001d1497ccd21..5b22c52420d64 100644 --- a/src/components/AddressSearch/index.tsx +++ b/src/components/AddressSearch/index.tsx @@ -479,7 +479,12 @@ function AddressSearch({ - {isFetchingCurrentLocation && } + {isFetchingCurrentLocation && ( + + )} ); } From 4654d201acd6cce13b190d08e52d43275c18123a Mon Sep 17 00:00:00 2001 From: Piyush Date: Sun, 30 Nov 2025 18:24:25 +0530 Subject: [PATCH 4/6] added styles.mt7 --- src/components/AddressSearch/index.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/AddressSearch/index.tsx b/src/components/AddressSearch/index.tsx index 5b22c52420d64..4e8a554ba85ea 100644 --- a/src/components/AddressSearch/index.tsx +++ b/src/components/AddressSearch/index.tsx @@ -480,10 +480,9 @@ function AddressSearch({ {isFetchingCurrentLocation && ( - + + + )} ); From 2f899ea7b3846c0459b7cba2cbb00666ae95f443 Mon Sep 17 00:00:00 2001 From: Piyush Date: Tue, 2 Dec 2025 19:48:34 +0530 Subject: [PATCH 5/6] added background color && opacity styles --- src/components/AddressSearch/index.tsx | 12 +++++++++++- src/styles/index.ts | 8 ++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/src/components/AddressSearch/index.tsx b/src/components/AddressSearch/index.tsx index 4e8a554ba85ea..381818144f74f 100644 --- a/src/components/AddressSearch/index.tsx +++ b/src/components/AddressSearch/index.tsx @@ -480,7 +480,17 @@ function AddressSearch({ {isFetchingCurrentLocation && ( - + )} diff --git a/src/styles/index.ts b/src/styles/index.ts index ac3510a3e1311..bd0b2b973f005 100644 --- a/src/styles/index.ts +++ b/src/styles/index.ts @@ -647,10 +647,18 @@ const staticStyles = (theme: ThemeColors) => opacity: 0.5, }, + opacityActivityIndicator: { + opacity: 0.8, + }, + opacity1: { opacity: 1, }, + inset0: { + inset: 0, + }, + textDanger: { color: theme.danger, }, From da0b0bc10e97c2e50445332bcbda1e1fe6556d42 Mon Sep 17 00:00:00 2001 From: Piyush Date: Thu, 4 Dec 2025 16:03:12 +0530 Subject: [PATCH 6/6] added fullScreenLoadingIndicator styles --- src/components/AddressSearch/index.tsx | 14 ++------------ src/styles/index.ts | 8 -------- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/src/components/AddressSearch/index.tsx b/src/components/AddressSearch/index.tsx index 381818144f74f..d41926bbd73f1 100644 --- a/src/components/AddressSearch/index.tsx +++ b/src/components/AddressSearch/index.tsx @@ -1,5 +1,5 @@ import React, {useEffect, useMemo, useRef, useState} from 'react'; -import {Keyboard, LogBox, View} from 'react-native'; +import {Keyboard, LogBox, StyleSheet, View} from 'react-native'; import type {LayoutChangeEvent} from 'react-native'; import {GooglePlacesAutocomplete} from 'react-native-google-places-autocomplete'; import type {GooglePlaceData, GooglePlaceDetail} from 'react-native-google-places-autocomplete'; @@ -480,17 +480,7 @@ function AddressSearch({ {isFetchingCurrentLocation && ( - + )} diff --git a/src/styles/index.ts b/src/styles/index.ts index 39cba273b384f..19fba200fd0a8 100644 --- a/src/styles/index.ts +++ b/src/styles/index.ts @@ -650,18 +650,10 @@ const staticStyles = (theme: ThemeColors) => opacity: 0.5, }, - opacityActivityIndicator: { - opacity: 0.8, - }, - opacity1: { opacity: 1, }, - inset0: { - inset: 0, - }, - textDanger: { color: theme.danger, },