Enhance PullToRefresh component to ensure full height usage on mobile devices (#5179)

This commit is contained in:
Matiss Janis Aboltins
2025-06-16 21:30:52 +01:00
committed by GitHub
parent 234f008dcf
commit 07904c209e
2 changed files with 7 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ type PullToRefreshProps = ComponentProps<typeof BasePullToRefresh>;
export function PullToRefresh(props: PullToRefreshProps) {
return (
<div style={{ overflow: 'auto' }}>
<div style={{ overflow: 'auto', flex: 1 }}>
<BasePullToRefresh
pullDownThreshold={80}
resistance={2}

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [MatissJanis]
---
Fix transaction list on mobile to occupy full height even if there are not many transactions.