Skip to content

Commit

Permalink
Improve changelog item display
Browse files Browse the repository at this point in the history
  • Loading branch information
jagerman committed Apr 21, 2022
1 parent 392e51f commit 9e0b42b
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions lib/src/screens/changelog/changelog_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,11 @@ class ChangelogPage extends BasePage {
return ExpansionTile(
title: Text(versionTitle),
children: <Widget>[
Row(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Expanded(
child: Container(
padding: EdgeInsets.only(left: 15.0, right: 15.0),
child: Text('$versionChangesText\n')))
],
)
for (var e in versionChanges)
ListTile(
leading: Icon(Icons.arrow_right),
title: new Text(e),
)
],
);
},
Expand Down

0 comments on commit 9e0b42b

Please sign in to comment.