1
0
mirror of https://github.com/h7x4/Jisho-Study-Tool.git synced 2025-01-05 19:37:29 +01:00
Jisho-Study-Tool/lib/screens/kanji_search.dart

10 lines
236 B
Dart
Raw Normal View History

2020-06-30 15:15:31 +02:00
import 'package:flutter/material.dart';
import 'package:jisho_study_tool/services/jisho_search.dart';
2020-07-09 22:17:10 +02:00
class KanjiView extends StatelessWidget {
2020-06-30 15:15:31 +02:00
@override
Widget build(BuildContext context) {
2020-07-09 22:17:10 +02:00
return searchForKanji('');
2020-06-30 15:15:31 +02:00
}
2020-07-09 18:14:17 +02:00
}