import 'package:flutter/material.dart'; import 'package:rkm_educa_prof_app/componentes/text_custom.dart'; class ItemSubtituloTexto extends StatelessWidget { String titulo; String subtitulo; ItemSubtituloTexto({ required this.titulo, required this.subtitulo }); @override Widget build(BuildContext context) { return Container( height: 30, child: Row( children: [ TextCustom(text: titulo,fontWeight: FontWeight.bold), TextCustom(text: subtitulo,size: 12.0,), ], ), ); } }