Formatting fix

This commit is contained in:
Shawn 2023-02-16 10:02:43 -07:00
parent d4d27751eb
commit 8050060b7e

View File

@ -63,17 +63,20 @@ class _CollectionScreenState extends State<CollectionScreen> with GetItStateMixi
child: Column(
children: [
Expanded(
child: Column(crossAxisAlignment: CrossAxisAlignment.stretch, children: [
AppHeader(title: $strings.collectionTitleCollection, isTransparent: true),
_NewlyDiscoveredItemsBtn(count: discovered, onPressed: _scrollToTarget),
Flexible(
child: _CollectionList(
fromId: widget.fromId,
scrollKey: _scrollKey,
onReset: discovered + explored > 0 ? _handleReset : null,
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
AppHeader(title: $strings.collectionTitleCollection, isTransparent: true),
_NewlyDiscoveredItemsBtn(count: discovered, onPressed: _scrollToTarget),
Flexible(
child: _CollectionList(
fromId: widget.fromId,
scrollKey: _scrollKey,
onReset: discovered + explored > 0 ? _handleReset : null,
),
),
),
]),
],
),
),
_CollectionFooter(count: discovered + explored, total: total),
],