diff --git a/native/account/registration/registration-container.react.js b/native/account/registration/registration-container.react.js --- a/native/account/registration/registration-container.react.js +++ b/native/account/registration/registration-container.react.js @@ -3,9 +3,12 @@ import { useHeaderHeight } from '@react-navigation/elements'; import * as React from 'react'; import { ScrollView } from 'react-native'; +import { SafeAreaView } from 'react-native-safe-area-context'; import { useStyles } from '../../themes/colors.js'; +const safeAreaEdges = ['bottom']; + type ViewProps = React.ElementConfig; type Props = { ...ViewProps, @@ -29,17 +32,22 @@ ); return ( - - {children} - + + + {children} + + ); } const unboundStyles = { + fill: { + flex: 1, + }, scrollViewContentContainer: { padding: 16, },