Commit 1870f06a by Rizal Hermawan

update

parent 21807ec3
......@@ -174,7 +174,7 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid
if (_options!.style != LLSAlertStyle.loading) {
if (_options!.showCancelButton) {
listOfChildren.add(Padding(
padding: EdgeInsets.only(top: 18.0, left:18.0, right: 18.0),
padding: EdgeInsets.only(top: 18.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
......@@ -202,7 +202,7 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid
));
} else {
listOfChildren.add(Padding(
padding: EdgeInsets.only(top: 18.0, left:18.0, right: 18.0),
padding: EdgeInsets.only(top: 18.0),
child: LLSButton(
onPressed: confirm,
shape: LLSButtonShape.rounded,
......@@ -229,7 +229,7 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid
color: Colors.white,
width: double.infinity,
child: Padding(
padding: EdgeInsets.fromLTRB(0.0, 20.0, 0.0, 20.0),
padding: EdgeInsets.fromLTRB(10.0, 20.0, 10.0, 20.0),
child: Column(
mainAxisSize: MainAxisSize.min,
children: listOfChildren,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment