Skip to content

Commit

Permalink
Fixed missing const
Browse files Browse the repository at this point in the history
  • Loading branch information
alesimula committed Jan 12, 2022
1 parent 1456174 commit 63f60fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/apk_installer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class _ApkInstallerState extends State<ApkInstaller> {
child: Text(lang.installer_btn_dismiss),
onPressed: (){if (createShortcut) ApkInstaller.createLaunchIcon(package, appTitle); appWindow.close();},
)),
(){return isLaunchable ? const SizedBox(width: 15) : SizedBox.shrink();}(),
(){return isLaunchable ? const SizedBox(width: 15) : const SizedBox.shrink();}(),
(){return isLaunchable ? noMoveWindow(ToggleButton(
child: Text(lang.installer_btn_open),
checked: true,
Expand Down

0 comments on commit 63f60fa

Please sign in to comment.