started creating end-year summary and stb

This commit is contained in:
Kima
2023-06-08 19:53:50 +02:00
parent e1f84caf19
commit 87f3f93177
6 changed files with 97 additions and 12 deletions

View File

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

View File

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