stack_wallet/lib/widgets/custom_buttons/favorite_toggle.dart

83 lines
2.3 KiB
Dart
Raw Normal View History

2022-08-26 08:11:35 +00:00
import 'package:flutter/material.dart';
2022-09-23 00:18:24 +00:00
import 'package:flutter_riverpod/flutter_riverpod.dart';
2022-08-26 08:11:35 +00:00
import 'package:flutter_svg/svg.dart';
2022-09-23 00:18:24 +00:00
import 'package:stackwallet/providers/ui/color_theme_provider.dart';
2022-08-26 08:11:35 +00:00
import 'package:stackwallet/utilities/assets.dart';
import 'package:stackwallet/utilities/theme/stack_colors.dart';
2022-08-26 08:11:35 +00:00
2022-09-23 00:18:24 +00:00
class FavoriteToggle extends ConsumerStatefulWidget {
2022-08-26 08:11:35 +00:00
const FavoriteToggle({
Key? key,
this.backGround,
this.borderRadius = BorderRadius.zero,
this.initialState = false,
2022-09-21 00:46:07 +00:00
this.on,
this.off,
2022-08-26 08:11:35 +00:00
required this.onChanged,
}) : super(key: key);
final Color? backGround;
2022-09-21 00:46:07 +00:00
final Color? on;
final Color? off;
2022-08-26 08:11:35 +00:00
final BorderRadiusGeometry borderRadius;
final bool initialState;
final void Function(bool)? onChanged;
@override
2022-09-23 00:18:24 +00:00
ConsumerState<FavoriteToggle> createState() => _FavoriteToggleState();
2022-08-26 08:11:35 +00:00
}
2022-09-23 00:18:24 +00:00
class _FavoriteToggleState extends ConsumerState<FavoriteToggle> {
2022-08-26 08:11:35 +00:00
late bool _isActive;
late Color _color;
late void Function(bool)? _onChanged;
2022-09-21 00:46:07 +00:00
late final Color on;
late final Color off;
2022-08-26 08:11:35 +00:00
@override
void initState() {
on = widget.on ??
2022-09-23 00:18:24 +00:00
ref.read(colorThemeProvider.state).state.favoriteStarActive;
off = widget.off ??
2022-09-23 00:18:24 +00:00
ref.read(colorThemeProvider.state).state.favoriteStarInactive;
2022-08-26 08:11:35 +00:00
_isActive = widget.initialState;
2022-09-21 00:46:07 +00:00
_color = _isActive ? on : off;
2022-08-26 08:11:35 +00:00
_onChanged = widget.onChanged;
super.initState();
}
@override
Widget build(BuildContext context) {
return Container(
decoration: BoxDecoration(
color: widget.backGround,
borderRadius: widget.borderRadius,
),
child: MaterialButton(
splashColor: Theme.of(context).extension<StackColors>()!.highlight,
2022-08-26 08:11:35 +00:00
minWidth: 0,
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
shape: RoundedRectangleBorder(
borderRadius: widget.borderRadius,
),
onPressed: _onChanged != null
? () {
_isActive = !_isActive;
setState(() {
2022-09-21 00:46:07 +00:00
_color = _isActive ? on : off;
2022-08-26 08:11:35 +00:00
});
_onChanged!.call(_isActive);
}
: null,
child: SvgPicture.asset(
Assets.svg.star,
width: 16,
height: 16,
color: _color,
),
),
);
}
}