Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions lib/pages/apps.dart
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,11 @@ class AppsPageState extends State<AppsPage> {
showError(e is Map ? e['errors'] : e, context);
return <App>[];
} finally {
if (!mounted) return;
setState(() {
refreshingSince = null;
});
if (mounted) {
setState(() {
refreshingSince = null;
});
}
}
}

Expand Down Expand Up @@ -881,7 +882,8 @@ class AppsPageState extends State<AppsPage> {
).textTheme.bodySmall?.copyWith(fontSize: 11),
),
),
const SizedBox(height: 12),
),

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This closing parenthesis fixes the widget structure, which is great. However, it seems the Padding widget on line 887 is now incorrectly indented. For better code readability, please align it with its sibling widgets in the Column.

const SizedBox(height: 12),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 12.0),
child: Builder(
Expand Down
Loading