Přidat O Aplikaci

This commit is contained in:
Matyáš Caras 2022-04-19 16:06:03 +02:00
parent 63f4d6c056
commit 5a4dd5e0b6
5 changed files with 107 additions and 8 deletions

View File

@ -5,5 +5,6 @@
- Upgrade knihovny
- Odhlášení přesunuto do textového menu
- Odstraněna stránka domů, hlavní stránka je nyní jídelníček
- Přidána stránka `O Aplikaci`
# 0.1.0
- První verze

71
lib/okna/about.dart Normal file
View File

@ -0,0 +1,71 @@
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';
class AboutPage extends StatefulWidget {
const AboutPage({Key? key}) : super(key: key);
@override
State<AboutPage> createState() => _AboutPageState();
}
class _AboutPageState extends State<AboutPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("O Aplikaci"),
),
body: SizedBox(
height: MediaQuery.of(context).size.height,
child: Column(mainAxisSize: MainAxisSize.min, children: [
const Text("OpenCanteen", style: TextStyle(fontSize: 30)),
const Text("© 2022 Matyáš Caras a přispěvatelé"),
const Text("Vydáno pod licencí GNU GPLv3"),
const SizedBox(height: 15),
const Text("Použité knihovny:", style: TextStyle(fontSize: 19)),
const SizedBox(height: 10),
cudlik(
"Flutter",
"Copyright 2014 The Flutter Authors. All rights reserved, licence BSD 3-Clause",
"https://github.com/flutter/flutter/blob/master/LICENSE"),
const SizedBox(height: 10),
cudlik(
"Flutter_secure_storage",
"Copyright 2017 German Saprykin. All rights reserved, licence BSD 3-Clause",
"https://github.com/mogol/flutter_secure_storage/blob/develop/flutter_secure_storage/LICENSE"),
const SizedBox(height: 10),
cudlik(
"connectivity_plus",
"Copyright 2017 The Chromium Authors. All rights reserved, licence BSD 3-Clause",
"https://github.com/fluttercommunity/plus_plugins/blob/main/packages/connectivity_plus/connectivity_plus/LICENSE"),
const SizedBox(height: 10),
cudlik(
"url_launcher",
"Copyright 2013 The Flutter Authors. All rights reserved, licence BSD 3-Clause",
"https://github.com/flutter/plugins/blob/main/packages/url_launcher/url_launcher/LICENSE"),
const SizedBox(height: 10),
cudlik(
"canteenlib",
"Copyright (c) 2022 Matyáš Caras and contributors, licence MIT",
"https://github.com/hernikplays/canteenlib/blob/main/LICENSE")
]),
),
);
}
Widget cudlik(String nazev, String copyright, String licence) {
return InkWell(
onTap: () => launch(licence),
child: Column(children: [
Text(
nazev,
style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 17),
textAlign: TextAlign.center,
),
Text(
copyright,
),
]),
);
}
}

View File

@ -1,8 +1,11 @@
import 'package:canteenlib/canteenlib.dart';
import 'package:flutter/material.dart';
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
import 'package:opencanteen/util.dart';
import 'package:url_launcher/url_launcher.dart';
import '../main.dart';
import 'about.dart';
class JidelnicekPage extends StatefulWidget {
const JidelnicekPage({Key? key, required this.canteen, required this.user})
@ -169,6 +172,24 @@ class _JidelnicekPageState extends State<JidelnicekPage> {
});
}
void kliknuti(String value) {
switch (value) {
case 'Odhlásit se':
const storage = FlutterSecureStorage();
storage.deleteAll();
Navigator.pushReplacement(
context, MaterialPageRoute(builder: (c) => const LoginPage()));
break;
case 'Nahlásit chybu':
launch("https://github.com/hernikplays/opencanteen/issues/new/choose");
break;
case 'O Aplikaci':
Navigator.push(
context, MaterialPageRoute(builder: (c) => const AboutPage()));
break;
}
}
@override
void initState() {
super.initState();
@ -181,6 +202,20 @@ class _JidelnicekPageState extends State<JidelnicekPage> {
drawer: drawerGenerator(context, widget.canteen, widget.user, 1),
appBar: AppBar(
title: const Text('Jídelníček'),
actions: [
PopupMenuButton(
onSelected: kliknuti,
itemBuilder: (BuildContext context) {
return {'Nahlásit chybu', 'O Aplikaci', 'Odhlásit se'}
.map((String choice) {
return PopupMenuItem<String>(
value: choice,
child: Text(choice),
);
}).toList();
},
),
],
),
body: RefreshIndicator(
child: Center(

View File

@ -106,13 +106,6 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.1"
cupertino_icons:
dependency: "direct main"
description:
name: cupertino_icons
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.4"
dbus:
dependency: transitive
description:

View File

@ -17,7 +17,6 @@ dependencies:
flutter_localizations:
sdk: flutter
canteenlib: ^0.1.0-alpha.14
cupertino_icons: ^1.0.2
connectivity_plus: ^2.2.1
flutter_secure_storage: ^5.0.2
url_launcher: ^6.0.20