124 lines
3.2 KiB
Dart
124 lines
3.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:unofficial_jisho_api/api.dart';
|
|
|
|
import '../../../../bloc/theme/theme_bloc.dart';
|
|
|
|
class Examples extends StatelessWidget {
|
|
final List<YomiExample> onyomi;
|
|
final List<YomiExample> kunyomi;
|
|
|
|
const Examples({
|
|
required this.onyomi,
|
|
required this.kunyomi,
|
|
Key? key,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
children: [
|
|
[
|
|
Container(
|
|
margin: const EdgeInsets.symmetric(horizontal: 10),
|
|
alignment: Alignment.centerLeft,
|
|
child: const Text(
|
|
'Examples:',
|
|
style: TextStyle(fontSize: 20),
|
|
),
|
|
)
|
|
],
|
|
onyomi
|
|
.map((onyomiExample) => _Example(onyomiExample, _KanaType.onyomi))
|
|
.toList(),
|
|
kunyomi
|
|
.map(
|
|
(kunyomiExample) => _Example(kunyomiExample, _KanaType.kunyomi),
|
|
)
|
|
.toList(),
|
|
].expand((list) => list).toList(),
|
|
);
|
|
}
|
|
}
|
|
|
|
enum _KanaType { kunyomi, onyomi }
|
|
|
|
class _Example extends StatelessWidget {
|
|
final _KanaType kanaType;
|
|
final YomiExample yomiExample;
|
|
|
|
const _Example(this.yomiExample, this.kanaType);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final _themeData = BlocProvider.of<ThemeBloc>(context).state.theme;
|
|
final _kanaColors = kanaType == _KanaType.kunyomi
|
|
? _themeData.kunyomiColor
|
|
: _themeData.onyomiColor;
|
|
final _menuColors = _themeData.menuGreyNormal;
|
|
|
|
return Container(
|
|
margin: const EdgeInsets.symmetric(
|
|
vertical: 5.0,
|
|
horizontal: 10.0,
|
|
),
|
|
decoration: BoxDecoration(
|
|
color: _menuColors.background,
|
|
borderRadius: BorderRadius.circular(10.0),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Container(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 10.0,
|
|
horizontal: 10.0,
|
|
),
|
|
decoration: BoxDecoration(
|
|
color: _kanaColors.background,
|
|
borderRadius: const BorderRadius.only(
|
|
topLeft: Radius.circular(10.0),
|
|
bottomLeft: Radius.circular(10.0),
|
|
),
|
|
),
|
|
child: Column(
|
|
children: [
|
|
Text(
|
|
yomiExample.reading,
|
|
style: TextStyle(
|
|
color: _kanaColors.foreground,
|
|
fontSize: 15.0,
|
|
),
|
|
),
|
|
const SizedBox(
|
|
height: 5.0,
|
|
),
|
|
Text(
|
|
yomiExample.example,
|
|
style: TextStyle(
|
|
color: _kanaColors.foreground,
|
|
fontSize: 20.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 15.0,
|
|
),
|
|
Expanded(
|
|
child: Wrap(
|
|
children: [
|
|
Text(
|
|
yomiExample.meaning,
|
|
style: TextStyle(
|
|
color: _menuColors.foreground,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|