Merge pull request #3225 from grummbeer/ajust-dialog-padding

CustomDialog. Add left padding to actions
This commit is contained in:
RustDesk 2023-02-16 12:49:42 +08:00 committed by GitHub
commit 4085631bb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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