mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-30 11:33:34 +08:00
PurchaseScreen: Move Feature Timeline button below
This commit is contained in:
@ -30,20 +30,25 @@ 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),
|
||||||
OutlineButton(
|
|
||||||
child: Text(tr("feature_timeline.title")),
|
|
||||||
onPressed: () {
|
|
||||||
var route = MaterialPageRoute(
|
|
||||||
builder: (context) => FeatureTimelineScreen(),
|
|
||||||
settings: const RouteSettings(name: '/featureTimeline'),
|
|
||||||
);
|
|
||||||
Navigator.of(context).push(route);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
const SizedBox(height: 64.0),
|
const SizedBox(height: 64.0),
|
||||||
PurchaseWidget(),
|
PurchaseWidget(),
|
||||||
const SizedBox(height: 32.0),
|
const SizedBox(height: 32.0),
|
||||||
RestorePurchaseButton(),
|
Row(
|
||||||
|
children: [
|
||||||
|
RestorePurchaseButton(),
|
||||||
|
OutlineButton(
|
||||||
|
child: Text(tr("feature_timeline.title")),
|
||||||
|
onPressed: () {
|
||||||
|
var route = MaterialPageRoute(
|
||||||
|
builder: (context) => FeatureTimelineScreen(),
|
||||||
|
settings: const RouteSettings(name: '/featureTimeline'),
|
||||||
|
);
|
||||||
|
Navigator.of(context).push(route);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
|
),
|
||||||
],
|
],
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
Reference in New Issue
Block a user