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
This only happens when you have a ScrollView or ListView with TabBarIOS. You can remove the extra space at the top if you put automaticallyAdjustContentInsets={false}
However, the ScrollView will not completely be shown because the bottom portion of it will be hidden under the TabBarIOS. To fix this add contentInset={{bottom:49}}
adjust the height according to your needs.
here is the code: