refactor: apply changes according to Dart

trailing commas
This commit is contained in:
Pun Butrach
2023-08-12 14:33:15 +07:00
parent 4b0c8cecc8
commit 11d8f9fd30
3 changed files with 11 additions and 5 deletions

View File

@ -190,7 +190,9 @@ class InstallerViewModel extends BaseViewModel {
children: [
Padding(
padding: const EdgeInsets.symmetric(
horizontal: 20, vertical: 10),
horizontal: 20,
vertical: 10,
),
child: I18nText(
'installerView.installTypeDescription',
child: Text(
@ -240,7 +242,7 @@ class InstallerViewModel extends BaseViewModel {
Navigator.of(context).pop();
installResult(context, installType.value == 1);
},
)
),
],
),
);