import 'package:flutter/material.dart'; class InterventionDetails extends StatelessWidget { final String title; final String data; const InterventionDetails( {super.key, required this.title, required this.data}); @override Widget build(BuildContext context) { return Column( children: [ Text( title, textAlign: TextAlign.center, style: TextStyle( color: Colors.black, fontWeight: FontWeight.w600, fontSize: 13, ), ), SizedBox( height: 8, ), Text( data, textAlign: TextAlign.center, style: TextStyle( color: Colors.grey, fontWeight: FontWeight.w400, fontSize: 12, ), ), ], ); } }