mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
74 lines
1.9 KiB
Dart
74 lines
1.9 KiB
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_svg/svg.dart';
|
||
|
import 'package:stackwallet/utilities/assets.dart';
|
||
|
import 'package:stackwallet/utilities/cfcolors.dart';
|
||
|
|
||
|
class FavoriteToggle extends StatefulWidget {
|
||
|
const FavoriteToggle({
|
||
|
Key? key,
|
||
|
this.backGround,
|
||
|
this.borderRadius = BorderRadius.zero,
|
||
|
this.initialState = false,
|
||
|
this.on = CFColors.link2,
|
||
|
this.off = CFColors.buttonGray,
|
||
|
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
|
||
|
State<FavoriteToggle> createState() => _FavoriteToggleState();
|
||
|
}
|
||
|
|
||
|
class _FavoriteToggleState extends State<FavoriteToggle> {
|
||
|
late bool _isActive;
|
||
|
late Color _color;
|
||
|
late void Function(bool)? _onChanged;
|
||
|
|
||
|
@override
|
||
|
void initState() {
|
||
|
_isActive = widget.initialState;
|
||
|
_color = _isActive ? widget.on : widget.off;
|
||
|
_onChanged = widget.onChanged;
|
||
|
super.initState();
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Container(
|
||
|
decoration: BoxDecoration(
|
||
|
color: widget.backGround,
|
||
|
borderRadius: widget.borderRadius,
|
||
|
),
|
||
|
child: MaterialButton(
|
||
|
splashColor: CFColors.splashLight,
|
||
|
minWidth: 0,
|
||
|
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
||
|
shape: RoundedRectangleBorder(
|
||
|
borderRadius: widget.borderRadius,
|
||
|
),
|
||
|
onPressed: _onChanged != null
|
||
|
? () {
|
||
|
_isActive = !_isActive;
|
||
|
setState(() {
|
||
|
_color = _isActive ? widget.on : widget.off;
|
||
|
});
|
||
|
_onChanged!.call(_isActive);
|
||
|
}
|
||
|
: null,
|
||
|
child: SvgPicture.asset(
|
||
|
Assets.svg.star,
|
||
|
width: 16,
|
||
|
height: 16,
|
||
|
color: _color,
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|