grade page done in summary

This commit is contained in:
Kima
2023-06-16 01:30:17 +02:00
parent ce1c5eb0d8
commit 551b2849fe
12 changed files with 340 additions and 27 deletions

View File

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