diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-01-19 11:05:44 -0500 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-01-19 11:05:44 -0500 |
| commit | abbf0e15b860a503941223b21f38791409906d83 (patch) | |
| tree | 785bfd25a98c92e194f389860bd62c453cda8812 /src/screens/profile/CaptionScreen.tsx | |
| parent | 886ebcbd29cc09b6edf6739e4560d6b3ccee2a59 (diff) | |
added loading for edit profile
Diffstat (limited to 'src/screens/profile/CaptionScreen.tsx')
| -rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index 3d422e8a..91aaa617 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -83,12 +83,12 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { return ( <SearchBackground> + {loading ? <TaggLoadingIndicator fullscreen /> : <Fragment />} <TouchableWithoutFeedback onPress={Keyboard.dismiss}> <KeyboardAvoidingView behavior={Platform.OS === 'ios' ? 'padding' : 'height'} style={{flex: 1}}> <View style={styles.contentContainer}> - {loading ? <TaggLoadingIndicator fullscreen /> : <Fragment />} <View style={styles.buttonsContainer}> <Button title="Cancel" |
