2022-01-25 00:54:21 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:mdi/mdi.dart';
|
|
|
|
|
|
|
|
import '../../components/common/denshi_jisho_background.dart';
|
|
|
|
import '../../services/open_webpage.dart';
|
|
|
|
import '../../settings.dart';
|
|
|
|
|
|
|
|
class AboutView extends StatelessWidget {
|
|
|
|
const AboutView({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
static const double _verticalSeparation = 18.0;
|
|
|
|
|
|
|
|
Widget _header(context) => Column(
|
|
|
|
children: [
|
|
|
|
const SizedBox(height: _verticalSeparation),
|
|
|
|
Text(
|
|
|
|
'Jisho Study Tool',
|
2024-11-13 22:43:44 +01:00
|
|
|
style: Theme.of(context).textTheme.headlineSmall,
|
2022-01-25 00:54:21 +01:00
|
|
|
),
|
|
|
|
const SizedBox(height: _verticalSeparation),
|
|
|
|
Row(
|
|
|
|
children: [
|
|
|
|
const Expanded(child: SizedBox()),
|
|
|
|
Expanded(
|
|
|
|
child: Image.asset(
|
|
|
|
'assets/images/logo/logo_icon_transparent_green.png',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
const Expanded(child: SizedBox()),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
const SizedBox(height: _verticalSeparation),
|
|
|
|
Text(
|
|
|
|
'Version: $appVersion',
|
2024-11-13 22:43:44 +01:00
|
|
|
style: Theme.of(context).textTheme.headlineLarge,
|
2022-01-25 00:54:21 +01:00
|
|
|
),
|
|
|
|
const SizedBox(height: _verticalSeparation),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(title: const Text('About')),
|
|
|
|
body: DenshiJishoBackground(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
// crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
_header(context),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 30),
|
|
|
|
child: Text(
|
|
|
|
'Jisho Study Tool is a frontend for Jisho.org, a a powerful Japanese-English dictionary. '
|
|
|
|
"It's made to aid you in your journey towards Japanese proficiency. "
|
|
|
|
'More features to come!',
|
2024-11-13 22:43:44 +01:00
|
|
|
style: Theme.of(context).textTheme.bodyMedium,
|
2022-01-25 00:54:21 +01:00
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
const SizedBox(height: 2 * _verticalSeparation),
|
|
|
|
|
2024-11-13 22:43:44 +01:00
|
|
|
Text('Contact:', style: Theme.of(context).textTheme.headlineSmall),
|
2022-01-25 00:54:21 +01:00
|
|
|
const SizedBox(height: _verticalSeparation),
|
|
|
|
IntrinsicHeight(
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Colors.black,
|
|
|
|
borderRadius: BorderRadius.circular(15),
|
|
|
|
),
|
|
|
|
child: IconButton(
|
|
|
|
iconSize: 50,
|
|
|
|
onPressed: () => open_webpage(
|
|
|
|
'https://github.com/h7x4ABk3g/Jisho-Study-Tool',
|
|
|
|
),
|
|
|
|
icon: const Icon(Mdi.github),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
const SizedBox(width: 20),
|
|
|
|
Expanded(
|
|
|
|
child: InkWell(
|
|
|
|
onTap: () => open_webpage(
|
|
|
|
'mailto:developer@jishostudytool.app',
|
|
|
|
),
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: const [
|
|
|
|
Text('You can reach me at:'),
|
|
|
|
Text(
|
|
|
|
'developer@jishostudytool.app',
|
|
|
|
style: TextStyle(color: Colors.blue),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
const SizedBox(height: _verticalSeparation),
|
|
|
|
Text(
|
|
|
|
'File a bug report:',
|
2024-11-13 22:43:44 +01:00
|
|
|
style: Theme.of(context).textTheme.headlineSmall,
|
2022-01-25 00:54:21 +01:00
|
|
|
),
|
|
|
|
InkWell(
|
|
|
|
onTap: () => open_webpage(
|
|
|
|
'mailto:bugs@jishostudytool.app',
|
|
|
|
),
|
|
|
|
child: Container(
|
|
|
|
alignment: Alignment.center,
|
|
|
|
padding: const EdgeInsets.symmetric(
|
|
|
|
vertical: _verticalSeparation,
|
|
|
|
),
|
|
|
|
child: const Text(
|
|
|
|
'bugs@jishostudytool.app',
|
|
|
|
style: TextStyle(color: Colors.blue),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
'I would really appreciate it if you send in some bug reports! '
|
|
|
|
'If you find something weird, '
|
|
|
|
'please send me a mail, or open an issue on GitHub.',
|
2024-11-13 22:43:44 +01:00
|
|
|
style: Theme.of(context).textTheme.bodyMedium,
|
2022-01-25 00:54:21 +01:00
|
|
|
),
|
|
|
|
const SizedBox(height: _verticalSeparation),
|
|
|
|
Center(
|
|
|
|
child: Text(
|
|
|
|
'頑張れ!',
|
|
|
|
style: Theme.of(context)
|
|
|
|
.textTheme
|
2024-11-13 22:43:44 +01:00
|
|
|
.headlineSmall
|
2022-01-25 00:54:21 +01:00
|
|
|
?.merge(japaneseFont.textStyle),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
// const SizedBox(height: 6 * _verticalSeparation),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|