Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Gloveland/app
Browse files Browse the repository at this point in the history
  • Loading branch information
jazminsofiaf committed Mar 20, 2022
2 parents eaa54d8 + 43b4dc4 commit 7b09e8d
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions lib/pages/interpretation_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ class _InterpretationPageState extends State<InterpretationPage> {
body: Center(
child: Padding(
padding: EdgeInsets.all(16.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
InterpretationsPanel(),
]),
child: InterpretationsPanel(),
),
),
);
Expand Down Expand Up @@ -126,9 +122,7 @@ class _InterpretationWidgetState extends State<InterpretationWidget> {
),
]);

return Container(
width: double.infinity,
child: Column(
return Column(
children: <Widget>[
displayStats(containerDecorator),
SizedBox(
Expand Down Expand Up @@ -173,11 +167,10 @@ class _InterpretationWidgetState extends State<InterpretationWidget> {
decoration: containerDecorator,
child: Text(msg));
}),
SizedBox(width: double.infinity, height: 20),
InterpretationButton(resetWordCallback: () =>
resetWord())
],
));
);
}

StreamBuilder<List<int>> displayStats(containerDecorator) {
Expand Down

0 comments on commit 7b09e8d

Please sign in to comment.