Merge branch 'pharmacy_fix' into 'development'

cart fix

See merge request Cloud_Solution/diplomatic-quarter!413
merge-requests/414/merge
Mohammad Aljammal 3 years ago
commit b539ff5851

@ -29,9 +29,7 @@ class _GestureIconButtonState extends State<GestureIconButton> {
setState(() => _buttonLongPress = !_buttonLongPress), setState(() => _buttonLongPress = !_buttonLongPress),
onLongPressEnd: (_) => onLongPressEnd: (_) =>
setState(() => _buttonLongPress = !_buttonLongPress), setState(() => _buttonLongPress = !_buttonLongPress),
child: Wrap( child: Container(
children: [
Container(
decoration: BoxDecoration( decoration: BoxDecoration(
border: Border.all( border: Border.all(
color: widget.backgroundColor != null color: widget.backgroundColor != null
@ -45,7 +43,6 @@ class _GestureIconButtonState extends State<GestureIconButton> {
child: Padding( child: Padding(
padding: const EdgeInsets.all(8.0), padding: const EdgeInsets.all(8.0),
child: Container( child: Container(
child: Expanded(
child: Row( child: Row(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
@ -62,9 +59,6 @@ class _GestureIconButtonState extends State<GestureIconButton> {
), ),
), ),
), ),
),
],
),
); );
} }
} }

Loading…
Cancel
Save