You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PatientApp-KKUMC/lib/widgets/buttons/secondary_button.dart

275 lines
9.5 KiB
Dart

import 'package:diplomaticquarterapp/core/viewModels/project_view_model.dart';
import 'package:diplomaticquarterapp/services/permission/permission_service.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
/// SecondaryButton widget
/// [label] button label
/// [icon] button icon its optional
/// [iconOnly] just show the icon
/// [color] the background color
/// [textColor] the text color
/// [onTap] button function
/// [loading] show the progress indicator
/// [disabled] disabled the button
/// [borderColor] the button border color
/// [noBorderRadius] remove border radius
class SecondaryButton extends StatefulWidget {
SecondaryButton(
{Key? key,
this.label = "",
this.icon,
this.iconOnly = false,
this.color,
this.textColor = Colors.white,
this.onTap,
this.loading= false,
this.small = false,
this.disabled = false,
this.borderColor,
this.noBorderRadius = false,
this.borderRadius,
this.disableColor,
this.fontWeight, this.fontSize})
: super(key: key);
final String label;
final Widget? icon;
final VoidCallback? onTap;
final bool? loading;
final Color? color;
final Color? textColor;
final Color? borderColor;
final bool small;
final bool iconOnly;
final bool disabled;
final bool noBorderRadius;
final double? borderRadius;
final Color? disableColor;
final FontWeight? fontWeight;
final double? fontSize;
@override
_SecondaryButtonState createState() => _SecondaryButtonState();
}
class _SecondaryButtonState extends State<SecondaryButton>
with TickerProviderStateMixin {
double _buttonSize = 1.0;
late AnimationController _animationController;
late Animation _animation;
PermissionService permission = new PermissionService();
double _rippleSize = 0.0;
late AnimationController _rippleController;
late Animation _rippleAnimation;
@override
void initState() {
if (widget.disabled != null && !widget.disabled) {
setState(() {
_rippleSize = 1.0;
});
}
_animationController = AnimationController(
vsync: this,
lowerBound: 0.7,
upperBound: 1.0,
duration: Duration(milliseconds: 120));
_animation = CurvedAnimation(
parent: _animationController,
curve: Curves.easeOutQuad,
reverseCurve: Curves.easeOutQuad);
_animation.addListener(() {
setState(() {
_buttonSize = _animation.value;
});
});
_rippleController = AnimationController(
vsync: this,
lowerBound: 0.0,
upperBound: 1.0,
duration: Duration(seconds: 1));
_rippleAnimation = CurvedAnimation(
parent: _rippleController, curve: Curves.easeInOutQuint);
_rippleAnimation.addListener(() {
setState(() {
_rippleSize = _rippleAnimation.value;
});
});
super.initState();
}
@override
void dispose() {
_animationController.dispose();
_rippleController.dispose();
super.dispose();
}
Widget _buildIcon() {
if (widget.icon != null && (widget.label != null && widget.label != "")) {
return Container(height: 25.0, child: widget.icon);
} else if (widget.icon != null &&
(widget.label == null || widget.label == "")) {
return Container(height: 25.0, width: 25, child: widget.icon);
} else {
return Container();
}
}
@override
void didUpdateWidget(SecondaryButton oldWidget) {
super.didUpdateWidget(oldWidget);
if (oldWidget.disabled != widget.disabled) {
bool d = widget.disabled ?? false;
if (!d) {
_rippleController.forward();
} else {
if (_rippleSize == 1.0)
_rippleController.reverse(from: 1.0);
else
_rippleController.reverse();
}
}
}
@override
Widget build(BuildContext context) {
ProjectViewModel projectViewModel = Provider.of(context);
return IgnorePointer(
ignoring: widget.loading!,
child: GestureDetector(
onTapDown: (TapDownDetails tap) {
_animationController.reverse(from: 1.0);
},
onTapUp: (TapUpDetails tap) {
_animationController.forward();
},
onTapCancel: () {
_animationController.forward();
},
onTap: () => {
widget.disabled ? null : widget.onTap!(),
},
// onTap: widget.disabled?null:Feedback.wrapForTap(widget.onTap, context),
behavior: HitTestBehavior.opaque,
child: Transform.scale(
scale: _buttonSize,
child: Container(
decoration: BoxDecoration(
border: widget.borderColor != null
? Border.all(
color: widget.borderColor!.withOpacity(0.1), width: 2.0)
: null,
borderRadius: BorderRadius.all(Radius.circular(100.0)),
boxShadow: [
BoxShadow(
color: Color.fromRGBO(0, 0, 0, 0.04),
spreadRadius: -0.0,
offset: Offset(0, 4.0),
blurRadius: 18.0)
],
),
child: ClipRRect(
borderRadius: widget.noBorderRadius
? BorderRadius.all(Radius.circular(0.0))
: BorderRadius.all(
Radius.circular(widget.borderRadius ?? 10.0), ),
child: Stack(
children: <Widget>[
Positioned(
left: 0,
bottom: 0,
child: Container(
width: MediaQuery.of(context).size.width,
height: 100,
decoration: BoxDecoration(
color: widget.disabled
? widget.disableColor ?? Colors.grey
: widget.color ?? Theme.of(context).buttonTheme.colorScheme!.background),
),
),
Positioned(
left: -MediaQuery.of(context).size.width * 2.2 / 1.8,
bottom: -MediaQuery.of(context).size.width * 2.2 / 1.8,
child: Transform.scale(
scale: widget.disabled != null ? _rippleSize : 1.0,
child: Container(
width: MediaQuery.of(context).size.width * 2.2,
height: MediaQuery.of(context).size.width * 2.2,
decoration: BoxDecoration(
// shape: BoxShape.circle,
color: widget.disabled
? widget.disableColor ?? Colors.grey
: widget.color ?? Theme.of(context).buttonTheme.colorScheme!.background,
),
),
),
),
Container(
padding: widget.iconOnly
? EdgeInsets.symmetric(vertical: 4.0, horizontal: 5.0)
: EdgeInsets.only(
top: widget.small ? 8.0 : 12.0,
bottom: widget.small ? 6.0 : 12.0,
left: 18.0,
right: 18.0),
child: Stack(
children: <Widget>[
Positioned(
child: _buildIcon(),
),
Row(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
mainAxisSize: MainAxisSize.max,
children: <Widget>[
widget.loading!
? Padding(
padding: EdgeInsets.all(2.6),
child: SizedBox(
height: 19.0,
width: 19.0,
child: CircularProgressIndicator(
backgroundColor: Colors.white,
valueColor:
AlwaysStoppedAnimation<Color>(
Colors.grey[300]!,
),
),
),
)
: Padding(
padding: EdgeInsets.only(
bottom: widget.small ? 4.0 : 3.0),
child: Text(
widget.label,
textAlign: TextAlign.center,
style: TextStyle(
color: widget.textColor,
fontSize: widget.small ? 12.0 : widget.fontSize??14.0,
fontWeight: FontWeight.w700,
fontFamily: projectViewModel.isArabic
? 'Cairo'
: 'Poppins'
),
),
)
],
)
],
),
),
],
),
),
),
),
),
);
}
}