criada a tela_botetim.dart

This commit is contained in:
Reginaldo
2023-06-06 16:55:16 -03:00
parent fd4ec02a81
commit ba5146cb1e
9 changed files with 286 additions and 29 deletions

View File

@@ -0,0 +1,26 @@
import 'package:flutter/material.dart';
import 'package:rkm_educa_app/componentes/text_custom.dart';
class ItemModelo extends StatelessWidget {
String texto;
String titulo;
ItemModelo({
required this.texto,
required this.titulo,
});
@override
Widget build(BuildContext context) {
return Padding(
padding: EdgeInsets.symmetric(vertical: 10),
child: Row(
children: [
TextCustom(text: titulo,size: 14.0,fontWeight: FontWeight.bold,),
SizedBox(width: 10,),
TextCustom(text: texto,size: 14.0),
],
),
);
}
}