2020-08-23 00:38:42 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:unofficial_jisho_api/api.dart';
|
|
|
|
|
|
|
|
class JapaneseHeader extends StatelessWidget {
|
2021-03-03 00:24:25 +01:00
|
|
|
final JishoJapaneseWord word;
|
2021-08-03 22:13:50 +02:00
|
|
|
|
2021-03-03 00:24:25 +01:00
|
|
|
const JapaneseHeader(this.word);
|
2020-08-23 00:38:42 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2021-03-05 22:40:20 +01:00
|
|
|
final hasFurigana = (word.word != null && word.reading != null);
|
2020-08-23 00:38:42 +02:00
|
|
|
|
|
|
|
return Container(
|
2020-08-24 23:45:47 +02:00
|
|
|
alignment: Alignment.centerLeft,
|
|
|
|
padding: EdgeInsets.only(left: 10.0),
|
2020-08-23 00:38:42 +02:00
|
|
|
child: Column(
|
|
|
|
children: [
|
2021-07-26 21:39:17 +02:00
|
|
|
// TODO: take a look at this logic
|
|
|
|
(hasFurigana) ? Text(word.reading!) : Text(''),
|
|
|
|
(hasFurigana) ? Text(word.word!) : Text(word.reading ?? word.word!),
|
2020-08-23 00:38:42 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|