horario pro

This commit is contained in:
Felipe
2024-03-19 22:00:48 -05:00
parent 10536be873
commit f37f8c89c2
14 changed files with 751 additions and 62 deletions
@@ -0,0 +1,17 @@
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'),
),
);
}
}
@@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
class UserServicesScreen extends StatelessWidget {
const UserServicesScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Mis servicios'),
),
body: const Center(
child: Text('Servicios'),
),
);
}
}