Jisho-Study-Tool/lib/components/search/search_results_body/parts/header.dart

29 lines
747 B
Dart
Raw Normal View History

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-12-01 23:09:53 +01:00
const JapaneseHeader({
required this.word,
Key? key,
}) : super(key: key);
bool get hasFurigana => word.word != null && word.reading != null;
2020-08-23 00:38:42 +02:00
@override
Widget build(BuildContext context) {
return Container(
2020-08-24 23:45:47 +02:00
alignment: Alignment.centerLeft,
2021-12-01 23:09:53 +01:00
padding: const 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
2021-12-01 23:09:53 +01:00
hasFurigana ? Text(word.reading!) : const Text(''),
hasFurigana ? Text(word.word!) : Text(word.reading ?? word.word!),
2020-08-23 00:38:42 +02:00
],
),
);
}
}