Skip to content

Commit 45376c3

Browse files
added padding around logo (#150)
1 parent 1796fd7 commit 45376c3

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

lib/ui/views/more_view.dart

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,13 @@ class MoreView extends StatelessWidget {
9090
onTap: () => Navigator.of(context).push(
9191
PageRouteBuilder(
9292
pageBuilder: (context, _, __) => AboutDialog(
93-
applicationIcon: SizedBox(
94-
width: 75,
95-
child: Image.asset(
96-
'assets/images/favicon_applets.png')),
93+
applicationIcon: Padding(
94+
padding: const EdgeInsets.all(8.0),
95+
child: SizedBox(
96+
width: 75,
97+
child: Image.asset(
98+
'assets/images/favicon_applets.png')),
99+
),
97100
applicationName:
98101
AppIntl.of(context).more_open_source_licenses,
99102
applicationVersion: model.appVersion,

0 commit comments

Comments
 (0)