Skip to content

Commit

Permalink
fix: contributions initial position
Browse files Browse the repository at this point in the history
  • Loading branch information
pd4d10 committed Sep 14, 2019
1 parent c14fdb4 commit 7606f6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/screens/user.dart
Expand Up @@ -97,7 +97,7 @@ class UserScreen extends StatelessWidget {
}

Widget _buildContributions(List<ContributionsInfo> contributions) {
var row = Row(
final row = Row(
children: <Widget>[],
crossAxisAlignment: CrossAxisAlignment.start,
);
Expand Down Expand Up @@ -128,6 +128,7 @@ class UserScreen extends StatelessWidget {
padding: EdgeInsets.all(10),
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
reverse: true,
child: row,
),
);
Expand Down

0 comments on commit 7606f6e

Please sign in to comment.