Commit 1870f06a by Rizal Hermawan

update

parent 21807ec3
...@@ -174,7 +174,7 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid ...@@ -174,7 +174,7 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid
if (_options!.style != LLSAlertStyle.loading) { if (_options!.style != LLSAlertStyle.loading) {
if (_options!.showCancelButton) { if (_options!.showCancelButton) {
listOfChildren.add(Padding( listOfChildren.add(Padding(
padding: EdgeInsets.only(top: 18.0, left:18.0, right: 18.0), padding: EdgeInsets.only(top: 18.0),
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[ children: <Widget>[
...@@ -202,7 +202,7 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid ...@@ -202,7 +202,7 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid
)); ));
} else { } else {
listOfChildren.add(Padding( listOfChildren.add(Padding(
padding: EdgeInsets.only(top: 18.0, left:18.0, right: 18.0), padding: EdgeInsets.only(top: 18.0),
child: LLSButton( child: LLSButton(
onPressed: confirm, onPressed: confirm,
shape: LLSButtonShape.rounded, shape: LLSButtonShape.rounded,
...@@ -229,7 +229,7 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid ...@@ -229,7 +229,7 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid
color: Colors.white, color: Colors.white,
width: double.infinity, width: double.infinity,
child: Padding( 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( child: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: listOfChildren, 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