-
Hi was wondering if there was any known bug/problems with android and Flashlist? currently getting report from some users that they can't scroll back up, because it closes the sheet instead of scrolling up. export const BottomSheet = forwardRef<TrueSheet, TrueSheetProps>(({ children, ...props }, ref) => {
return (
<TrueSheet sizes={["auto"]} cornerRadius={24} {...props} ref={ref}>
<View p="$base" py="$lg">
{children}
</View>
</TrueSheet>
)
})
[...]
<BottomSheet
name="transaction-list"
ref={transactionListSheetRef}
scrollRef={transactionListRef}
sizes={["large"]}
>
<YStack h="100%">
<TransactionList ref={transactionListRef} isRefreshing={isRefreshing} transactions={filteredTransactions} />
</YStack>
</BottomSheet> |
Beta Was this translation helpful? Give feedback.
Answered by
lodev09
Nov 5, 2024
Replies: 1 comment
-
You might get some insight from this issue: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
wcastand
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You might get some insight from this issue:
#75