exibindo faltas na tela_faltas.dart

This commit is contained in:
Reginaldo
2023-12-05 19:52:49 -03:00
parent 8fc77f2adc
commit 3a5b2bdb44
26 changed files with 816 additions and 15 deletions

View File

@@ -0,0 +1,11 @@
class ModeloEvento{
String titulo;
String data;
int cor;
ModeloEvento({
required this.titulo,
required this.data,
this.cor = 0
});
}