Skip to content

Commit

Permalink
add padding to button
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernthedev committed Sep 5, 2022
1 parent dd897d4 commit 6f0ecfc
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions lib/pages/logger.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,15 @@ class LogPage extends StatelessWidget {
},
),
actions: [
IconButton(
onPressed: _saveLog,
icon: const Icon(
FluentIcons.save_28_regular,
size: 28,
))
Padding(
padding: const EdgeInsets.all(8.0),
child: IconButton(
onPressed: _saveLog,
icon: const Icon(
FluentIcons.save_28_regular,
size: 28,
)),
)
],
),
body: Padding(
Expand Down Expand Up @@ -111,7 +114,7 @@ class LogPage extends StatelessWidget {
writer.writeAll(logs, Adb.hostPath.separator);
await writer.flush();
await writer.close();

// TODO: user feedback when finished
}
}

0 comments on commit 6f0ecfc

Please sign in to comment.