diff options
author | Ansh <anshnanda10@gmail.com> | 2023-04-12 18:50:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-12 18:50:04 -0700 |
commit | ec0510d1d9af2345b13c6f91b6f856f079828b85 (patch) | |
tree | f51d0288165389c4d0edefc3b319044caeff6771 /src | |
parent | f50f07f562b82e15be28aa750d7e45629081faa3 (diff) | |
download | voidsky-ec0510d1d9af2345b13c6f91b6f856f079828b85.tar.zst |
add scrollIndicatorInset right: 1 to fix (#464)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/Settings.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/Settings.tsx b/src/view/screens/Settings.tsx index 081be8dca..76a3efa60 100644 --- a/src/view/screens/Settings.tsx +++ b/src/view/screens/Settings.tsx @@ -141,7 +141,7 @@ export const SettingsScreen = withAuthRequired( return ( <View style={[s.hContentRegion]} testID="settingsScreen"> <ViewHeader title="Settings" /> - <ScrollView style={s.hContentRegion}> + <ScrollView style={s.hContentRegion} scrollIndicatorInsets={{right: 1}}> <View style={styles.spacer20} /> <View style={[s.flexRow, styles.heading]}> <Text type="xl-bold" style={pal.text}> |