Files
prosappco/lib/src/screens/professional_revision.dart
T
2023-04-16 17:34:18 -05:00

105 lines
3.3 KiB
Dart

import 'package:flutter/material.dart';
import 'package:prosappco/src/components/pop_appbar.dart';
class ProfessionalRevisionScreen extends StatefulWidget {
const ProfessionalRevisionScreen({super.key});
@override
State<ProfessionalRevisionScreen> createState() =>
_ProfessionalRevisionScreenState();
}
class _ProfessionalRevisionScreenState
extends State<ProfessionalRevisionScreen> {
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
appBar: PopAppbar(
onPressed: () {
Navigator.pop(context);
},
label: 'Perfil profesional',
),
body: Container(
color: Colors.white,
child: Padding(
padding: const EdgeInsets.only(top: 40),
child: Column(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: const [
Icon(
Icons.access_time,
color: Color(0xFF2BA4EC),
),
SizedBox(width: 8),
Text('Información en revisión.',
style: TextStyle(
color: Color(0xFF2BA4EC),
fontSize: 17,
fontWeight: FontWeight.w500)),
],
),
const Image(
image: AssetImage('images/checklist.gif'),
width: 300,
),
Container(
margin: const EdgeInsets.symmetric(horizontal: 40),
decoration: BoxDecoration(
color: const Color(0xFFD6F4FF),
borderRadius: BorderRadius.circular(30),
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 2,
blurRadius: 5,
offset: const Offset(0, 3), // changes position of shadow
),
],
),
padding:
const EdgeInsets.symmetric(vertical: 15, horizontal: 25),
child: Wrap(
alignment: WrapAlignment.start, // Centra el contenido
children: [
Row(
children: const [
Icon(
Icons.info_outline,
size: 20,
),
SizedBox(width: 5),
Text(
'Su información, esta en revisión, ',
style: TextStyle(
fontSize: 14,
),
),
],
),
const Text(
'una vez aprobada podrá acceder, ',
style: TextStyle(
fontSize: 14,
),
),
const Text(
'al perfil profesional.',
style: TextStyle(
fontSize: 14,
),
),
],
),
),
],
),
),
),
));
}
}