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