update UI ; fix android InputService @Keep

This commit is contained in:
csf
2022-04-13 13:46:22 +08:00
parent 21e64cce09
commit bb21435faa
3 changed files with 7 additions and 9 deletions

View File

@@ -132,7 +132,8 @@ class CustomAlertDialog extends StatelessWidget {
onWillPop: onWillPop ?? () async => false,
child: AlertDialog(
title: title,
contentPadding: EdgeInsets.all(contentPadding ?? 20),
contentPadding: EdgeInsets.symmetric(
horizontal: contentPadding ?? 25, vertical: 10),
content: content,
actions: actions,
));