mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 10:11:03 +00:00
65 lines
1.6 KiB
Dart
65 lines
1.6 KiB
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/gestures.dart';
|
|
import 'package:stackwallet/utilities/cfcolors.dart';
|
|
import 'package:stackwallet/utilities/text_styles.dart';
|
|
|
|
class BlueTextButton extends StatefulWidget {
|
|
const BlueTextButton({Key? key, required this.text, this.onTap})
|
|
: super(key: key);
|
|
|
|
final String text;
|
|
final VoidCallback? onTap;
|
|
|
|
@override
|
|
State<BlueTextButton> createState() => _BlueTextButtonState();
|
|
}
|
|
|
|
class _BlueTextButtonState extends State<BlueTextButton>
|
|
with SingleTickerProviderStateMixin {
|
|
late AnimationController controller;
|
|
late Animation<dynamic> animation;
|
|
late Color color;
|
|
|
|
@override
|
|
void initState() {
|
|
color = CFColors.link2;
|
|
controller = AnimationController(
|
|
vsync: this,
|
|
duration: const Duration(milliseconds: 100),
|
|
);
|
|
animation = ColorTween(
|
|
begin: CFColors.link2,
|
|
end: CFColors.link2.withOpacity(0.4),
|
|
).animate(controller);
|
|
|
|
animation.addListener(() {
|
|
setState(() {
|
|
color = animation.value as Color;
|
|
});
|
|
});
|
|
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
controller.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return RichText(
|
|
textAlign: TextAlign.center,
|
|
text: TextSpan(
|
|
text: widget.text,
|
|
style: STextStyles.link2.copyWith(color: color),
|
|
recognizer: TapGestureRecognizer()
|
|
..onTap = () {
|
|
widget.onTap?.call();
|
|
controller.forward().then((value) => controller.reverse());
|
|
},
|
|
),
|
|
);
|
|
}
|
|
}
|