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

26 lines
689 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-03-03 00:24:25 +01:00
const JapaneseHeader(this.word);
2020-08-23 00:38:42 +02:00
@override
Widget build(BuildContext context) {
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
],
),
);
}
}