mirror of
https://github.com/h7x4/Jisho-Study-Tool.git
synced 2024-12-22 22:07:29 +01:00
h7x4
28f900c02e
* Add lots of new functionality to search results * Fix jlpt level * Make antonyms clickable * Add kanji list * Replace Blocof with BlocBuilder * Make kanji widgets squared * Add missing colons to headers * add romaji under sentences * Fix extensive search not showing * Miscellaneous refactoring
19 lines
480 B
Dart
19 lines
480 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Notes extends StatelessWidget {
|
|
final List<String> notes;
|
|
const Notes({Key? key, required this.notes}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) => Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const Text(
|
|
'Notes:',
|
|
style: TextStyle(fontWeight: FontWeight.bold),
|
|
),
|
|
Text(notes.join(', ')),
|
|
],
|
|
);
|
|
}
|