mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 12:27:41 +00:00
82 lines
2.3 KiB
Dart
82 lines
2.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_svg/svg.dart';
|
|
import 'package:stackwallet/providers/ui/color_theme_provider.dart';
|
|
import 'package:stackwallet/utilities/assets.dart';
|
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
|
|
|
class FavoriteToggle extends ConsumerStatefulWidget {
|
|
const FavoriteToggle({
|
|
Key? key,
|
|
this.backGround,
|
|
this.borderRadius = BorderRadius.zero,
|
|
this.initialState = false,
|
|
this.on,
|
|
this.off,
|
|
required this.onChanged,
|
|
}) : super(key: key);
|
|
|
|
final Color? backGround;
|
|
final Color? on;
|
|
final Color? off;
|
|
final BorderRadiusGeometry borderRadius;
|
|
final bool initialState;
|
|
final void Function(bool)? onChanged;
|
|
|
|
@override
|
|
ConsumerState<FavoriteToggle> createState() => _FavoriteToggleState();
|
|
}
|
|
|
|
class _FavoriteToggleState extends ConsumerState<FavoriteToggle> {
|
|
late bool _isActive;
|
|
late Color _color;
|
|
late void Function(bool)? _onChanged;
|
|
|
|
late final Color on;
|
|
late final Color off;
|
|
|
|
@override
|
|
void initState() {
|
|
on = widget.on ??
|
|
ref.read(colorThemeProvider.state).state.favoriteStarActive;
|
|
off = widget.off ??
|
|
ref.read(colorThemeProvider.state).state.favoriteStarInactive;
|
|
_isActive = widget.initialState;
|
|
_color = _isActive ? on : off;
|
|
_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,
|
|
minWidth: 0,
|
|
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: widget.borderRadius,
|
|
),
|
|
onPressed: _onChanged != null
|
|
? () {
|
|
_isActive = !_isActive;
|
|
setState(() {
|
|
_color = _isActive ? on : off;
|
|
});
|
|
_onChanged!.call(_isActive);
|
|
}
|
|
: null,
|
|
child: SvgPicture.asset(
|
|
Assets.svg.star,
|
|
width: 16,
|
|
height: 16,
|
|
color: _color,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|