117 lines
3.7 KiB
Dart
117 lines
3.7 KiB
Dart
// Label StoreMAX
|
|
//
|
|
// Created by Anthony Gordon.
|
|
// 2020, WooSignal Ltd. All rights reserved.
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:label_storemax/helpers/tools.dart';
|
|
import 'package:label_storemax/labelconfig.dart';
|
|
import 'package:label_storemax/widgets/menu_item.dart';
|
|
import 'package:label_storemax/widgets/woosignal_ui.dart';
|
|
import 'package:package_info/package_info.dart';
|
|
|
|
class AboutPage extends StatefulWidget {
|
|
AboutPage();
|
|
|
|
@override
|
|
_AboutPageState createState() => _AboutPageState();
|
|
}
|
|
|
|
class _AboutPageState extends State<AboutPage> {
|
|
_AboutPageState();
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: Colors.transparent,
|
|
leading: IconButton(
|
|
icon: Icon(Icons.close),
|
|
onPressed: () => Navigator.pop(context),
|
|
),
|
|
title: Text(trans(context, "About"),
|
|
style: Theme.of(context).primaryTextTheme.headline6),
|
|
centerTitle: true,
|
|
),
|
|
body: SafeArea(
|
|
minimum: safeAreaDefault(),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: <Widget>[
|
|
Flexible(
|
|
child: storeLogo(),
|
|
flex: 2,
|
|
),
|
|
Flexible(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
children: <Widget>[
|
|
wsMenuItem(
|
|
context,
|
|
title: trans(context, "Privacy policy"),
|
|
leading: Icon(Icons.people),
|
|
action: _actionPrivacy,
|
|
),
|
|
wsMenuItem(
|
|
context,
|
|
title: trans(context, "Terms and conditions"),
|
|
leading: Icon(Icons.description),
|
|
action: _actionTerms,
|
|
),
|
|
FutureBuilder<PackageInfo>(
|
|
future: PackageInfo.fromPlatform(),
|
|
builder: (BuildContext context,
|
|
AsyncSnapshot<PackageInfo> snapshot) {
|
|
switch (snapshot.connectionState) {
|
|
case ConnectionState.none:
|
|
return Text("");
|
|
case ConnectionState.active:
|
|
case ConnectionState.waiting:
|
|
return Text("");
|
|
case ConnectionState.done:
|
|
if (snapshot.hasError) return Text("");
|
|
return Padding(
|
|
child: Text(
|
|
trans(context, "Version") +
|
|
": " +
|
|
snapshot.data.version,
|
|
style: Theme.of(context)
|
|
.primaryTextTheme
|
|
.bodyText1),
|
|
padding: EdgeInsets.only(top: 15, bottom: 15),
|
|
);
|
|
}
|
|
return null; // unreachable
|
|
},
|
|
),
|
|
],
|
|
),
|
|
flex: 2,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
void _actionTerms() {
|
|
openBrowserTab(url: app_terms_url);
|
|
}
|
|
|
|
void _actionPrivacy() {
|
|
openBrowserTab(url: app_privacy_url);
|
|
}
|
|
}
|