BusinessAppFlutter/openclosenew/lib/thankyou.dart
vignesh 670cdb1499 Add Business (in progress)
add business design half UI design progress
2022-05-09 12:24:36 +05:30

65 lines
1.9 KiB
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import 'package:flutter/material.dart';
import 'package:openclosenew/businessstart_page.dart';
class thankyou extends StatelessWidget {
const thankyou({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Padding(
padding: EdgeInsets.only(left: 24, right: 24, bottom: 24),
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Spacer(),
Image.asset(
'assets/images/mobile.png',
),
SizedBox(
height: 24,
),
Text(
"Thank You!",
style: TextStyle(
fontSize: 24,
color: Color(0xff12C193),
),
),
SizedBox(
height: 24,
),
Text(
"Your mobile number verified successfully",
style: TextStyle(
fontSize: 15,
color: Colors.black,
),
),
Spacer(),
MaterialButton(
height: 50,
minWidth: double.infinity,
color: Color(0xff12C193),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(4)),
onPressed: () {
Navigator.push(
context, MaterialPageRoute(builder: (_) => business()));
},
child: Text(
'Lets Explore',
style: TextStyle(color: Colors.white, fontSize: 15),
),
),
],
),
),
),
),
);
}
}