I\'m trying to implement a listview in React Native. Everything was fine when I was just calling the component Accounts
but since I put it into a NavigatorIOS the L
If you're trying to achieve this in android..contentInset is iOS specific, to manage this on android you need to set the property inside of
Then in your stylesheets.create
var styles = StyleSheet.create({
contentContainer: {
paddingBottom: 100
}
* I realise that op is asking for an iOS solution, just adding the android solution for people passing and if op decides he's fed up with iOS