mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
103 lines
3.5 KiB
Dart
103 lines
3.5 KiB
Dart
import 'dart:async';
|
|
import 'dart:developer';
|
|
|
|
import 'package:fladder/screens/shared/animated_fade_size.dart';
|
|
import 'package:fladder/util/refresh_state.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
class SelectableIconButton extends ConsumerStatefulWidget {
|
|
final FutureOr<dynamic> Function() onPressed;
|
|
final String? label;
|
|
final IconData icon;
|
|
final IconData? selectedIcon;
|
|
final bool selected;
|
|
const SelectableIconButton({
|
|
required this.onPressed,
|
|
required this.selected,
|
|
required this.icon,
|
|
this.selectedIcon,
|
|
this.label,
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
ConsumerState<ConsumerStatefulWidget> createState() => _SelectableIconButtonState();
|
|
}
|
|
|
|
class _SelectableIconButtonState extends ConsumerState<SelectableIconButton> {
|
|
bool loading = false;
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
const duration = Duration(milliseconds: 250);
|
|
const iconSize = 24.0;
|
|
return Tooltip(
|
|
message: widget.label ?? "",
|
|
child: ElevatedButton(
|
|
style: ButtonStyle(
|
|
backgroundColor: widget.selected ? WidgetStatePropertyAll(Theme.of(context).colorScheme.primary) : null,
|
|
foregroundColor: widget.selected ? WidgetStatePropertyAll(Theme.of(context).colorScheme.onPrimary) : null,
|
|
padding: const WidgetStatePropertyAll(EdgeInsets.zero),
|
|
),
|
|
onPressed: loading
|
|
? null
|
|
: () async {
|
|
setState(() => loading = true);
|
|
try {
|
|
await widget.onPressed();
|
|
if (context.mounted) await context.refreshData();
|
|
} catch (e) {
|
|
log(e.toString());
|
|
} finally {
|
|
setState(() => loading = false);
|
|
}
|
|
},
|
|
child: Padding(
|
|
padding: EdgeInsets.symmetric(vertical: 10, horizontal: widget.label != null ? 18 : 0),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
if (widget.label != null) ...{
|
|
Text(
|
|
widget.label.toString(),
|
|
),
|
|
const SizedBox(width: 10),
|
|
},
|
|
AnimatedFadeSize(
|
|
duration: duration,
|
|
child: loading
|
|
? Opacity(
|
|
opacity: 0.75,
|
|
child: SizedBox(
|
|
width: iconSize,
|
|
height: iconSize,
|
|
child: CircularProgressIndicator(
|
|
strokeCap: StrokeCap.round,
|
|
color: widget.selected
|
|
? Theme.of(context).colorScheme.onPrimary
|
|
: Theme.of(context).colorScheme.primary,
|
|
),
|
|
),
|
|
)
|
|
: !widget.selected
|
|
? Opacity(
|
|
opacity: 0.65,
|
|
child: Icon(
|
|
key: const Key("selected-off"),
|
|
widget.icon,
|
|
size: iconSize,
|
|
),
|
|
)
|
|
: Icon(
|
|
key: const Key("selected-on"),
|
|
widget.selectedIcon,
|
|
size: iconSize,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|