Commit 0ca8f995 by Rizal Hermawan

feat (lls_alert): modify lls alert. Story #1

parent bb0830d4
...@@ -148,12 +148,14 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid ...@@ -148,12 +148,14 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid
} }
if (_options!.title != null) { if (_options!.title != null) {
listOfChildren.add(Padding( listOfChildren.add(Center(
child: Padding(
padding: EdgeInsets.only(top: 24.0), padding: EdgeInsets.only(top: 24.0),
child: Text( child: Text(
_options!.title!, _options!.title!,
style: _options!.titleStyle, style: _options!.titleStyle,
), ),
),
)); ));
} }
......
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