mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
feature: Re-implemented syncing
This commit is contained in:
parent
c5c7f71b84
commit
86ff355e21
51 changed files with 3067 additions and 1147 deletions
|
|
@ -30,7 +30,7 @@ class ActionContent extends StatelessWidget {
|
|||
height: 4,
|
||||
),
|
||||
],
|
||||
Expanded(child: child),
|
||||
Flexible(child: child),
|
||||
if (actions.isNotEmpty) ...[
|
||||
if (showDividers)
|
||||
const Divider(
|
||||
|
|
|
|||
|
|
@ -34,10 +34,11 @@ class IconButtonAwaitState extends State<IconButtonAwait> {
|
|||
} catch (e) {
|
||||
log(e.toString());
|
||||
} finally {
|
||||
setState(() {
|
||||
if (!mounted) return;
|
||||
loading = false;
|
||||
});
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
loading = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
icon: AnimatedFadeSize(
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ class StatusCard extends ConsumerWidget {
|
|||
@override
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
return Padding(
|
||||
padding: const EdgeInsets.all(5),
|
||||
padding: const EdgeInsets.all(2),
|
||||
child: SizedBox.square(
|
||||
dimension: 33,
|
||||
child: Card(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue