fix the size of the button inside the app
parent
edbb99e445
commit
71ce8d22e3
@ -1,259 +0,0 @@
|
||||
import 'package:doctor_app_flutter/core/viewModel/project_view_model.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})
|
||||
: 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;
|
||||
|
||||
@override
|
||||
_SecondaryButtonState createState() => _SecondaryButtonState();
|
||||
}
|
||||
|
||||
class _SecondaryButtonState extends State<SecondaryButton>
|
||||
with TickerProviderStateMixin {
|
||||
double _buttonSize = 1.0;
|
||||
AnimationController _animationController;
|
||||
Animation _animation;
|
||||
|
||||
double _rippleSize = 0.0;
|
||||
AnimationController _rippleController;
|
||||
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(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
|
||||
? Colors.grey
|
||||
: widget.color ?? Theme.of(context).buttonColor),
|
||||
),
|
||||
),
|
||||
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
|
||||
? Colors.grey
|
||||
: widget.color ?? Theme.of(context).buttonColor,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
padding: widget.iconOnly
|
||||
? EdgeInsets.symmetric(vertical: 4.0, horizontal: 5.0)
|
||||
: EdgeInsets.only(
|
||||
top: widget.small ? 8.0 : 14.0,
|
||||
bottom: widget.small ? 6.0 : 14.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,
|
||||
style: TextStyle(
|
||||
color: widget.textColor,
|
||||
fontSize: 16,
|
||||
fontWeight: FontWeight.w700,
|
||||
fontFamily: 'Poppins'),
|
||||
),
|
||||
)
|
||||
],
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue