Componente appbar y primary buttom

This commit is contained in:
Juan Felipe Duarte
2023-04-13 15:23:16 -05:00
parent 2eea2d6502
commit 232ca3df46
13 changed files with 112 additions and 263 deletions
+13 -38
View File
@@ -1,4 +1,6 @@
import 'package:flutter/material.dart';
import 'package:prosappco/src/components/pop_appbar.dart';
import 'package:prosappco/src/components/primary_btn.dart';
class RequestSentScreen extends StatelessWidget {
const RequestSentScreen({super.key});
@@ -7,23 +9,12 @@ class RequestSentScreen extends StatelessWidget {
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
appBar: AppBar(
backgroundColor: Colors.white,
leading: IconButton(
icon: Icon(Icons.arrow_back),
onPressed: () {
Navigator.pushReplacementNamed(context, '/welcome');
},
),
iconTheme: IconThemeData(
color: Colors.black,
),
title: Text(
'Solicitud enviada',
style: TextStyle(
color: Colors.black,
),
)),
appBar: PopAppbar(
onPressed: () {
Navigator.pushReplacementNamed(context, '/welcome');
},
label: 'Solicitud enviada',
),
body: Center(
child: Column(
children: [
@@ -41,27 +32,11 @@ class RequestSentScreen extends StatelessWidget {
style:
TextStyle(color: Color(0xFF2BA4EC), fontSize: 20)),
),
ElevatedButton(
onPressed: () {
Navigator.pushReplacementNamed(context, '/welcome');
},
child: Text(
'Inicio',
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold,
fontSize: 18,
),
),
style: ElevatedButton.styleFrom(
backgroundColor: const Color(0xFF2BA4EC),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(50),
),
elevation: 0,
minimumSize: Size(200, 60),
),
)
PrimaryButtom(
onPressed: () {
Navigator.pushReplacementNamed(context, '/welcome');
},
label: 'Inicio'),
],
),
)));