node: 10.0.0
npm: 5.6.0
react-native: 0.58.5
react: 16.6.3
native-base: 2.12.0
No extra space after last item
Extra space after last item

Just adding any normal action sheet is adding extra space after last item.
Android
Checked with NativeBase 2.12.0, no issues


@SupriyaKalghatgi Please repeat the same case not different one. As you can see there is no title.
@venkatmithunk You dd'nt mention code snippet in issue description (as per issue template)
@SupriyaKalghatgi
ActionSheet.show (
{
options: [
{
text: 'Attach Photo',
icon: 'ios-folder-open-outline',
},
{
text: 'Take Photo',
icon: 'ios-camera-outline',
},
],
},
buttonIndex => {
if (buttonIndex === 0) {
this.pickImage ();
} else if (buttonIndex === 1) {
this.openCamera ();
}
}
);
Same problem here. I'm using [email protected]
ActionSheet.show({
options: [
{
text: 'Editar',
icon: 'create',
action: () => {},
},
{
text: 'Excluir',
icon: 'md-trash',
action: () => deleteAction(transaction),
},
],
})
But just with more then 2 itens.
@SupriyaKalghatgi Please reopen the issue. please test for two, three, four , five items in action sheet and you will understand.
@SupriyaKalghatgi Any update on this?
Any updates ?
I am also facing the same issue in native-base 2.12.0
Same issue
@SupriyaKalghatgi any updates on this?
Unfortunately not, the issue is still present 馃檨
@SupriyaKalghatgi any updates on this?
I've made a pr that resolves this issue in my app. Testers would be appreciated :D

I have same issue in version 2.12.1 but I working normal in version 2.6.1.
This issue very long time. I think we should fix and resolve it.
I've made a pr that resolves this issue in my app. Testers would be appreciated :D
Can you share it?
@TxusBlack I referenced this issue in the PR, so it's linked above, but sure: https://github.com/GeekyAnts/NativeBase/pull/2730
@TomMahle you change this code from height:this.state.items.length*80 to height: "auto" (or your height) in 3 files as picture. Current, I fixed this issue with this solution.

@TomMahle you change this code from
height:this.state.items.length*80toheight: "auto"(or your height) in 3 files as picture. Current, I fixed this issue with this solution.
Wow! I'll try! 馃槃
I'll make a PR
Most helpful comment
Same issue