Files
prosappco/lib/screens/user/user_history_services_screen.dart
T
2024-03-19 22:00:48 -05:00

18 lines
399 B
Dart

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'),
),
);
}
}