switch pro mode
This commit is contained in:
@@ -303,8 +303,7 @@ class _ProfessionalFormScreenState extends State<ProfessionalFormScreen> {
|
||||
// elevation: 0,
|
||||
),
|
||||
child: Container(
|
||||
constraints: const BoxConstraints(
|
||||
maxWidth: 300.0, minHeight: 50.0),
|
||||
constraints: const BoxConstraints(maxWidth: 300.0, minHeight: 50.0),
|
||||
alignment: Alignment.center,
|
||||
child: const Text(
|
||||
'Enviar a revisión',
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:prosappco/components/general_drawer.dart';
|
||||
|
||||
class ProfessionalProfileScreen extends StatefulWidget {
|
||||
const ProfessionalProfileScreen({super.key});
|
||||
|
||||
@override
|
||||
State<ProfessionalProfileScreen> createState() =>
|
||||
_ProfessionalProfileScreenState();
|
||||
}
|
||||
|
||||
class _ProfessionalProfileScreenState extends State<ProfessionalProfileScreen> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text('Perfil Profesional'),
|
||||
),
|
||||
body: Center(
|
||||
child: Text('Perfil profesional'),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:prosappco/components/general_drawer.dart';
|
||||
|
||||
class ProfessionalServicesScreen extends StatelessWidget {
|
||||
const ProfessionalServicesScreen({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
drawer: const GeneralDrawer(),
|
||||
appBar: AppBar(
|
||||
title: const Text('Solicitudes'),
|
||||
),
|
||||
body: const Center(
|
||||
child: Text('No tienes solicitudes'),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user