Add kanji page

This commit is contained in:
2022-01-26 01:58:47 +01:00
parent a8b0f3b737
commit c1ccbc00b3
16 changed files with 292 additions and 97 deletions

View File

@@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
class LoadingScreen extends StatelessWidget {
const LoadingScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Center(
child: CircularProgressIndicator(),
);
}
}