mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-01 12:23:44 +08:00
PurchaseScreen: Move Feature Timeline button below
This commit is contained in:
@ -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,
|
||||||
|
Reference in New Issue
Block a user