import 'package:flutter/material.dart'; class UserHistoryServicesScreen extends StatelessWidget { const UserHistoryServicesScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Historial de servicios'), ), body: const Center( child: Text('Historial de servicios'), ), ); } }