fixed const
This commit is contained in:
@@ -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)),
|
||||
|
||||
Reference in New Issue
Block a user