Skip to content

Commit 3d0c3bb

Browse files
author
tensor-programming
committed
add padding to menu
1 parent f562685 commit 3d0c3bb

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

lib/main.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,10 @@ class RootApp extends StatelessWidget {
135135
'Vote Power: ${double.parse(votecountSnapshot.data ?? '0.0').toStringAsPrecision(4)}',
136136
style: TextStyle(fontWeight: FontWeight.w700),
137137
),
138-
_generateMenu(categories, contributionBloc),
138+
Padding(
139+
padding: EdgeInsets.only(left: 12.0),
140+
child: _generateMenu(categories, contributionBloc),
141+
),
139142
],
140143
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
141144
crossAxisAlignment: CrossAxisAlignment.center,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: A flutter application for the utopian.rocks website.
77
# Both the version and the builder number may be overridden in flutter
88
# build by specifying --build-name and --build-number, respectively.
99
# Read more about versioning at semver.org.
10-
version: 0.0.8
10+
version: 0.0.9
1111

1212
environment:
1313
sdk: '>=2.0.0-dev.68.0 <3.0.0'

0 commit comments

Comments
 (0)