fix background color

This commit is contained in:
GleidsonDaniel 2024-03-27 11:31:18 -03:00
parent 336813449b
commit 1256117c76
1 changed files with 6 additions and 6 deletions

View File

@ -435,14 +435,14 @@ class ProfileView extends React.Component<IProfileViewProps, IProfileViewState>
} = this.props;
return (
<KeyboardView
style={{ backgroundColor: themes[theme].surfaceHover }}
contentContainerStyle={sharedStyles.container}
keyboardVerticalOffset={128}
>
<KeyboardView contentContainerStyle={sharedStyles.container} keyboardVerticalOffset={128}>
<StatusBar />
<SafeAreaView testID='profile-view'>
<ScrollView contentContainerStyle={sharedStyles.containerScrollView} testID='profile-view-list' {...scrollPersistTaps}>
<ScrollView
contentContainerStyle={[sharedStyles.containerScrollView, { backgroundColor: themes[theme].surfaceTint }]}
testID='profile-view-list'
{...scrollPersistTaps}
>
<View style={styles.avatarContainer} testID='profile-view-avatar'>
<AvatarWithEdit
text={user.username}