We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1796fd7 commit 45376c3Copy full SHA for 45376c3
lib/ui/views/more_view.dart
@@ -90,10 +90,13 @@ class MoreView extends StatelessWidget {
90
onTap: () => Navigator.of(context).push(
91
PageRouteBuilder(
92
pageBuilder: (context, _, __) => AboutDialog(
93
- applicationIcon: SizedBox(
94
- width: 75,
95
- child: Image.asset(
96
- 'assets/images/favicon_applets.png')),
+ applicationIcon: Padding(
+ padding: const EdgeInsets.all(8.0),
+ child: SizedBox(
+ width: 75,
97
+ child: Image.asset(
98
+ 'assets/images/favicon_applets.png')),
99
+ ),
100
applicationName:
101
AppIntl.of(context).more_open_source_licenses,
102
applicationVersion: model.appVersion,
0 commit comments