import 'package:flutter/material.dart'; class ProfessionalPendingScreen extends StatelessWidget { const ProfessionalPendingScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: const Text('Perfil profesional')), body: SingleChildScrollView( child: Padding( padding: const EdgeInsets.only(top: 40), child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ const Row( mainAxisAlignment: MainAxisAlignment.center, children: [ 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, ), ), ], ), Image( image: const AssetImage('images/checklist.gif'), width: MediaQuery.of(context).size.width * 0.7, ), Container( margin: const EdgeInsets.only(left: 40, right: 40, top: 20), 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), ), ], ), padding: const EdgeInsets.symmetric(vertical: 15, horizontal: 25), child: Column( children: [ SizedBox( width: MediaQuery.of(context).size.width * 0.8, child: const Column( children: [ Text( 'Gracias por proporcionar tu información. Actualmente, estamos revisando tus datos y una vez aprobados, podrás acceder al perfil profesional sin problemas. Te notificaremos tan pronto como tu cuenta esté lista.', style: TextStyle(fontSize: 14), ), SizedBox(height: 10), Text( '¡Gracias por tu paciencia!', style: TextStyle(fontSize: 14), ), ], ), ), ], ), ), ], ), ), ), ); } }