Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
m0nac0 committed Dec 27, 2021
1 parent 57ebc18 commit fc7a994
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions lib/gui/aia_compiler_widget_desktop.dart
Original file line number Diff line number Diff line change
Expand Up @@ -158,19 +158,16 @@ class _AIAAccepterDesktopState extends State<AIAAccepterDesktop> {
],
),
),
if (dir == null) Divider(),
if (dir == null) const Divider(),
spacer,
SizedBox(
width: 400,
height: code.split("\n").length > 2 ? 50 : 200,
child: ElevatedButton(
child: Text(
"Select AIA file " +
(dir != null
? "to update"
: ""),
style:
TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
"Select AIA file " + (dir != null ? "to update" : ""),
style: const TextStyle(
fontSize: 18, fontWeight: FontWeight.bold),
),
onPressed: () => pickAndHandleAIAFile(context),
)),
Expand Down

0 comments on commit fc7a994

Please sign in to comment.