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,
),
const SizedBox(height: 16.0),
const SizedBox(height: 64.0),
PurchaseWidget(),
const SizedBox(height: 32.0),
Row(
children: [
RestorePurchaseButton(),
OutlineButton(
child: Text(tr("feature_timeline.title")),
onPressed: () {
@ -40,10 +46,9 @@ class PurchaseScreen extends StatelessWidget {
Navigator.of(context).push(route);
},
),
const SizedBox(height: 64.0),
PurchaseWidget(),
const SizedBox(height: 32.0),
RestorePurchaseButton(),
],
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
),
],
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min,