Make list content overflow under bottom nav bar (#771)

This commit is contained in:
Leendert de Borst
2025-04-22 20:21:28 +02:00
parent 91b223bac9
commit d88ecb5fec
2 changed files with 4 additions and 2 deletions

View File

@@ -141,7 +141,6 @@ export default function CredentialsScreen() {
const styles = StyleSheet.create({
container: {
flex: 1,
marginBottom: 80,
},
content: {
flex: 1,
@@ -206,6 +205,8 @@ export default function CredentialsScreen() {
{ useNativeDriver: true }
)}
scrollEventThrottle={16}
contentContainerStyle={{ paddingBottom: 40 }}
scrollIndicatorInsets={{ bottom: 40 }}
ListHeaderComponent={
<ThemedView>
<TitleContainer title="Credentials" />

View File

@@ -164,7 +164,6 @@ export default function EmailsScreen() {
const styles = StyleSheet.create({
container: {
flex: 1,
marginBottom: 80,
},
content: {
flex: 1,
@@ -213,6 +212,8 @@ export default function EmailsScreen() {
{ useNativeDriver: true }
)}
scrollEventThrottle={16}
contentContainerStyle={{ paddingBottom: 40 }}
scrollIndicatorInsets={{ bottom: 40 }}
refreshControl={
<RefreshControl
refreshing={isRefreshing}