Skip to content

Commit

Permalink
Fix package names not centered
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonIT committed Aug 15, 2020
1 parent ce1b350 commit 084213e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,8 @@ class _TimeTrackerState extends State<TimeTracker> {
} catch (e) {
sentry.captureException(
exception: e,
stackTrace: e is Error ? e.stackTrace : null,
stackTrace:
e is Error ? e.stackTrace : null,
);
showCupertinoDialog(
context: context,
Expand Down Expand Up @@ -1533,12 +1534,12 @@ class LicensePage extends StatelessWidget {
padding: const EdgeInsets.only(bottom: 10),
child: Column(
children: <Widget>[
Center(
child: Text(
s.data[index].packages.join(", "),
style:
const TextStyle(fontWeight: FontWeight.bold),
Text(
s.data[index].packages.join(", "),
style: const TextStyle(
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
Column(
children: paragraphs
Expand Down

0 comments on commit 084213e

Please sign in to comment.