react-native-collapsible-tab-view icon indicating copy to clipboard operation
react-native-collapsible-tab-view copied to clipboard

How do i decrease empty space in flat list

Open jlee0810 opened this issue 2 years ago • 3 comments

image

There is too much white/empty space after the last item in the flatlist. Is there an option to change the size of this empty space?

jlee0810 avatar Jul 10 '23 17:07 jlee0810

@jlee0810 you can use flexbox property to position items in flatlist or use itemSeperatorComponent props in flatlist, I hope this will solve the problem.

sushantjadhav111 avatar Jul 16 '23 06:07 sushantjadhav111

I think the extra space is occuring because of the scroll offset between tabs not because of the styling of the flatlist.

ericlee0810 avatar Jul 16 '23 06:07 ericlee0810

The package uses minHeight property in its implementation. You can override it by passing contentContainerStyle={{ minHeight }} to the flatlist

Adil21 avatar Aug 03 '23 12:08 Adil21