Commit 7d08e410 by Rizal Hermawan

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

parent f3865a83
...@@ -150,11 +150,9 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid ...@@ -150,11 +150,9 @@ class _LLSAlertDialogState extends State<LLSAlertDialog> with SingleTickerProvid
if (_options!.title != null) { if (_options!.title != null) {
listOfChildren.add(Padding( listOfChildren.add(Padding(
padding: EdgeInsets.only(top: 24.0), padding: EdgeInsets.only(top: 24.0),
child: Center( 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