CustomDialog. Add left padding to actions

This commit is contained in:
grummbeer 2023-02-15 15:20:09 +01:00
parent 1b3ad55f9e
commit 432f0b7e3e

View File

@ -665,7 +665,7 @@ class CustomAlertDialog extends StatelessWidget {
child: content), child: content),
), ),
actions: actions, actions: actions,
actionsPadding: EdgeInsets.fromLTRB(0, 0, padding, padding), actionsPadding: EdgeInsets.fromLTRB(padding, 0, padding, padding),
), ),
); );
} }