react-native-progress-steps
react-native-progress-steps copied to clipboard
Adding a prop for bottom padding

Is it possible to change the bottom padding? This looks kinda strange.
@SaulNunez - Are you referring to the padding below the buttons at the bottom of the screen?
Yes
From ProgressButtons.js, change to this
const ProgressButtons = props => ( <SafeAreaView style={{ flexDirection: 'row', paddingHorizontal: 20, paddingVertical: 10 }}> <View style={{ flexGrow: 1, alignItems: 'flex-start' }}>{props.renderPreviousButton()}</View> <View style={{ flexGrow: 1, alignItems: 'flex-end' }}>{props.renderNextButton()}</View> </SafeAreaView> );