pick profesional

This commit is contained in:
Juan Felipe Duarte
2023-04-28 21:44:47 -05:00
parent f57d3792c8
commit 0f90bc7ee9
4 changed files with 177 additions and 24 deletions
+19
View File
@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
import 'package:prosappco/src/components/pop_appbar.dart';
class ServiceAfterScreen extends StatefulWidget {
const ServiceAfterScreen({super.key});
@override
State<ServiceAfterScreen> createState() => _ServiceAfterScreenState();
}
class _ServiceAfterScreenState extends State<ServiceAfterScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar:
PopAppbar(onPressed: () => Navigator.pop(context), label: 'Servicio'),
);
}
}