I just started exploring the FlashList component and I came across a problem. Screenshot I'm following their approach of SectionList but I want to achive a card like list but this is rendering the items one by one so each item is a card on it's own. Does anybody knows how can I make each group one card?
Is this
expenses?.map((group: any) => (
<Fragment key={group.date}>
<Animated.Text
entering={FadeIn}
exiting={FadeOut}
layout={transition}
style={{
color: Colours[colourScheme ?? "dark"].textLight,
width: "100%",
marginTop: Sizes.xSmall,
}}
>
{group.date}
</Animated.Text>
<Animated.View
style={styles(Colours[colourScheme ?? "dark"]).container}
layout={transition}
>
<FlashList
data={group.expenses}
renderItem={renderExpenses}
scrollEnabled={false}
estimatedItemSize={70}
/>
</Animated.View>
</Fragment>
a better approach with this data
const expensesGroups = expenseQuery.data
? Object.values(
expenseQuery.data?.reduce((spd, item) => {
var today = moment(new Date(item.expenseDate.split("T")[0])).format(
"DD MMMM YYYY"
);
if (!spd[today]) {
spd[today] = {
date: today,
expenses: [],
};
}
spd[today].expenses.push(item);
return spd;
}, [])
)
: [];
or it defeats the whole point of FlashList?
If you want to replicate SectionList component using FlashList, your data array needs to look different. It is still a flat array of items.
So in regular FlashList implementation like a FlatList you have an array like this:
If you want to implement SectionList your data array needs to look like:
And your FlashList Component:
https://shopify.github.io/flash-list/docs/guides/section-list
Then inside your renderItem function, you can do something like this: