This commit is contained in:
Felipe
2024-04-05 11:56:45 -05:00
parent f46450e5db
commit e82c7c3afd
18 changed files with 1297 additions and 546 deletions
@@ -0,0 +1,27 @@
import 'package:flutter/material.dart';
class UserServiceListScreen extends StatefulWidget {
const UserServiceListScreen({super.key});
@override
State<UserServiceListScreen> createState() => _UserServiceListScreenState();
}
class _UserServiceListScreenState extends State<UserServiceListScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Mis Servicios'),
),
body: ListView.builder(
itemCount: 10,
itemBuilder: (_, __) {
return ListTile(
onTap: () {},
title: Text('Servicio ${__ + 1}'),
);
}),
);
}
}