uncomment button height

pull/1476/head
ggurdin 1 year ago
parent a2513c7bd4
commit 25251ae613
No known key found for this signature in database
GPG Key ID: A01CB41737CBB478

@ -86,14 +86,12 @@ class PressableButtonState extends State<PressableButton>
onTapDown: _onTapDown, onTapDown: _onTapDown,
onTapUp: _onTapUp, onTapUp: _onTapUp,
onTapCancel: _onTapCancel, onTapCancel: _onTapCancel,
child: Container(
decoration: BoxDecoration(border: Border.all(color: Colors.green)),
child: Stack( child: Stack(
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,
children: [ children: [
Container( Container(
width: widget.width, width: widget.width,
// height: widget.height, height: widget.height,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Color.alphaBlend( color: Color.alphaBlend(
Colors.black.withOpacity(0.25), Colors.black.withOpacity(0.25),
@ -113,7 +111,6 @@ class PressableButtonState extends State<PressableButton>
), ),
], ],
), ),
),
); );
} }
} }

Loading…
Cancel
Save