fixed const

This commit is contained in:
Juan Felipe Duarte
2023-04-24 11:17:04 -05:00
parent aaa249d6f5
commit 028fce32a9
4 changed files with 29 additions and 21 deletions
+4 -4
View File
@@ -18,16 +18,16 @@ class RequestSentScreen extends StatelessWidget {
body: Center(
child: Column(
children: [
Padding(
padding: const EdgeInsets.only(top: 90, bottom: 40),
const Padding(
padding: EdgeInsets.only(top: 90, bottom: 40),
child: Icon(
Icons.check_circle_outline,
size: 50,
color: Color(0xFF35A8ED),
),
),
Padding(
padding: const EdgeInsets.only(bottom: 350),
const Padding(
padding: EdgeInsets.only(bottom: 350),
child: Text('Información enviada con éxito.',
style:
TextStyle(color: Color(0xFF2BA4EC), fontSize: 20)),