ajustado os dados para exibir o nome da escola

This commit is contained in:
Reginaldo
2023-06-20 16:53:59 -03:00
parent 4d30aab6d3
commit e9fa843a79
2 changed files with 20 additions and 10 deletions

View File

@@ -51,11 +51,11 @@ class DadosAlunosContainer extends StatelessWidget {
),
Container(
width: width*0.05,
child: TextCustom(text: alunoModel.turma.toUpperCase())
child: TextCustom(text: alunoModel.turma.toUpperCase(),textAlign: TextAlign.center,)
),
Container(
width: width*0.20,
child: TextCustom(text: alunoModel.escola.toUpperCase())
width: width*0.25,
child: TextCustom(text: alunoModel.escola.toUpperCase(),size: 14.0,)
),
],
),