PurchaseScreen: Move Feature Timeline button below

This commit is contained in:
Vishesh Handa
2020-08-19 13:31:11 +02:00
parent d6fb63c696
commit 06e78eb1d3

View File

@ -30,6 +30,12 @@ class PurchaseScreen extends StatelessWidget {
style: Theme.of(context).textTheme.bodyText2, style: Theme.of(context).textTheme.bodyText2,
), ),
const SizedBox(height: 16.0), const SizedBox(height: 16.0),
const SizedBox(height: 64.0),
PurchaseWidget(),
const SizedBox(height: 32.0),
Row(
children: [
RestorePurchaseButton(),
OutlineButton( OutlineButton(
child: Text(tr("feature_timeline.title")), child: Text(tr("feature_timeline.title")),
onPressed: () { onPressed: () {
@ -40,10 +46,9 @@ class PurchaseScreen extends StatelessWidget {
Navigator.of(context).push(route); Navigator.of(context).push(route);
}, },
), ),
const SizedBox(height: 64.0), ],
PurchaseWidget(), mainAxisAlignment: MainAxisAlignment.spaceEvenly,
const SizedBox(height: 32.0), ),
RestorePurchaseButton(),
], ],
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,