multiple payout page and small fixes

This commit is contained in:
Arseni
2026-02-11 02:48:30 +03:00
parent 66989ea36c
commit edb43f9909
77 changed files with 2120 additions and 1289 deletions

View File

@@ -16,20 +16,20 @@ class PageWithFooter extends StatelessWidget {
@override
Widget build(BuildContext context) => Scaffold(
appBar: appBar,
body: LayoutBuilder(
builder: (context, constraints) => SingleChildScrollView(
child: ConstrainedBox(
constraints: BoxConstraints(minHeight: constraints.maxHeight),
child: IntrinsicHeight(
child: Column(
children: [
Expanded(child: child),
FooterWidget(),
],
body: CustomScrollView(
slivers: [
SliverFillRemaining(
hasScrollBody: false,
child: Column(
children: [
Expanded(
child: Center(child: child),
),
),
FooterWidget(),
],
),
),
),
],
),
);
}
}