fix: license and search FAB
This commit is contained in:
parent
c5646cff15
commit
2506eb7f4a
9 changed files with 162 additions and 0 deletions
|
@ -3,6 +3,23 @@ import 'dart:convert';
|
||||||
import 'package:dio/dio.dart';
|
import 'package:dio/dio.dart';
|
||||||
import 'package:voyagehandbook/api/classes.dart';
|
import 'package:voyagehandbook/api/classes.dart';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Voyage Handbook - The open-source WikiVoyage reader
|
||||||
|
Copyright (C) 2023 Matyáš Caras
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
class WikiApi {
|
class WikiApi {
|
||||||
static final _dio = Dio(
|
static final _dio = Dio(
|
||||||
BaseOptions(baseUrl: "https://api.wikimedia.org/core/v1/wikivoyage/en/"));
|
BaseOptions(baseUrl: "https://api.wikimedia.org/core/v1/wikivoyage/en/"));
|
||||||
|
|
|
@ -3,6 +3,23 @@ import 'package:voyagehandbook/views/home.dart';
|
||||||
|
|
||||||
import '../views/search.dart';
|
import '../views/search.dart';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Voyage Handbook - The open-source WikiVoyage reader
|
||||||
|
Copyright (C) 2023 Matyáš Caras
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
/// Used to generate the drawer
|
/// Used to generate the drawer
|
||||||
///
|
///
|
||||||
/// Use `0` in `page` if you don't want any tile selected
|
/// Use `0` in `page` if you don't want any tile selected
|
||||||
|
|
|
@ -8,6 +8,23 @@ import 'package:voyagehandbook/util/styles.dart';
|
||||||
import 'package:voyagehandbook/util/widgets/warning.dart';
|
import 'package:voyagehandbook/util/widgets/warning.dart';
|
||||||
import 'package:html_unescape/html_unescape_small.dart';
|
import 'package:html_unescape/html_unescape_small.dart';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Voyage Handbook - The open-source WikiVoyage reader
|
||||||
|
Copyright (C) 2023 Matyáš Caras
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
final _ignoredTags = ["style", "script"];
|
final _ignoredTags = ["style", "script"];
|
||||||
|
|
||||||
/// Used to create Widgets from raw HTML from WM API
|
/// Used to create Widgets from raw HTML from WM API
|
||||||
|
|
|
@ -3,6 +3,23 @@ import 'dart:io';
|
||||||
|
|
||||||
import 'package:path_provider/path_provider.dart';
|
import 'package:path_provider/path_provider.dart';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Voyage Handbook - The open-source WikiVoyage reader
|
||||||
|
Copyright (C) 2023 Matyáš Caras
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
/// Used to ease up accessing local files
|
/// Used to ease up accessing local files
|
||||||
class StorageAccess {
|
class StorageAccess {
|
||||||
/// Get files in `recent` folder, which contains recently opened pages
|
/// Get files in `recent` folder, which contains recently opened pages
|
||||||
|
|
|
@ -1,5 +1,22 @@
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Voyage Handbook - The open-source WikiVoyage reader
|
||||||
|
Copyright (C) 2023 Matyáš Caras
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
class PageStyles {
|
class PageStyles {
|
||||||
static const h1 = TextStyle(fontSize: 26, fontWeight: FontWeight.bold);
|
static const h1 = TextStyle(fontSize: 26, fontWeight: FontWeight.bold);
|
||||||
static const h2 = TextStyle(fontSize: 22, fontWeight: FontWeight.bold);
|
static const h2 = TextStyle(fontSize: 22, fontWeight: FontWeight.bold);
|
||||||
|
|
|
@ -1,5 +1,22 @@
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Voyage Handbook - The open-source WikiVoyage reader
|
||||||
|
Copyright (C) 2023 Matyáš Caras
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
class Warning extends StatelessWidget {
|
class Warning extends StatelessWidget {
|
||||||
const Warning({super.key, required this.content});
|
const Warning({super.key, required this.content});
|
||||||
final List<TextSpan> content;
|
final List<TextSpan> content;
|
||||||
|
|
|
@ -3,6 +3,24 @@ import 'package:voyagehandbook/util/drawer.dart';
|
||||||
import 'package:voyagehandbook/util/storage.dart';
|
import 'package:voyagehandbook/util/storage.dart';
|
||||||
import 'package:voyagehandbook/util/styles.dart';
|
import 'package:voyagehandbook/util/styles.dart';
|
||||||
import 'package:voyagehandbook/views/pageview.dart';
|
import 'package:voyagehandbook/views/pageview.dart';
|
||||||
|
import 'package:voyagehandbook/views/search.dart';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Voyage Handbook - The open-source WikiVoyage reader
|
||||||
|
Copyright (C) 2023 Matyáš Caras
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
class HomeView extends StatefulWidget {
|
class HomeView extends StatefulWidget {
|
||||||
const HomeView({super.key});
|
const HomeView({super.key});
|
||||||
|
@ -22,6 +40,14 @@ class _HomeViewState extends State<HomeView> {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
|
floatingActionButton: FloatingActionButton(
|
||||||
|
onPressed: () => Navigator.of(context).pushReplacement(
|
||||||
|
MaterialPageRoute(
|
||||||
|
builder: (_) => const SearchView(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: const Icon(Icons.search),
|
||||||
|
),
|
||||||
appBar: AppBar(title: const Text("Home")),
|
appBar: AppBar(title: const Text("Home")),
|
||||||
drawer: genDrawer(1, context),
|
drawer: genDrawer(1, context),
|
||||||
body: Center(
|
body: Center(
|
||||||
|
|
|
@ -6,6 +6,23 @@ import 'package:voyagehandbook/util/render.dart';
|
||||||
import 'package:voyagehandbook/util/storage.dart';
|
import 'package:voyagehandbook/util/storage.dart';
|
||||||
import 'package:voyagehandbook/util/styles.dart';
|
import 'package:voyagehandbook/util/styles.dart';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Voyage Handbook - The open-source WikiVoyage reader
|
||||||
|
Copyright (C) 2023 Matyáš Caras
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
/// Renders a single WikiVoyage article
|
/// Renders a single WikiVoyage article
|
||||||
class ArticleView extends StatefulWidget {
|
class ArticleView extends StatefulWidget {
|
||||||
const ArticleView({super.key, required this.pageKey, required this.name});
|
const ArticleView({super.key, required this.pageKey, required this.name});
|
||||||
|
|
|
@ -5,6 +5,23 @@ import 'package:voyagehandbook/views/pageview.dart';
|
||||||
|
|
||||||
import '../util/drawer.dart';
|
import '../util/drawer.dart';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Voyage Handbook - The open-source WikiVoyage reader
|
||||||
|
Copyright (C) 2023 Matyáš Caras
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
class SearchView extends StatefulWidget {
|
class SearchView extends StatefulWidget {
|
||||||
const SearchView({super.key});
|
const SearchView({super.key});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue