2022-05-09 06:54:36 +00:00
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:openclosenew/businessstart_page.dart';
|
2022-06-01 16:36:23 +00:00
|
|
|
|
import 'FontFamily.dart';
|
2022-05-31 13:48:18 +00:00
|
|
|
|
import 'colors.dart';
|
2022-06-01 16:36:23 +00:00
|
|
|
|
import 'fontsize.dart';
|
2022-05-09 06:54:36 +00:00
|
|
|
|
|
|
|
|
|
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(
|
2022-06-01 16:36:23 +00:00
|
|
|
|
fontFamily: Font,
|
|
|
|
|
fontSize: TitleText,
|
2022-05-31 13:48:18 +00:00
|
|
|
|
color: primaryColor,
|
2022-05-09 06:54:36 +00:00
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 24,
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
"Your mobile number verified successfully",
|
|
|
|
|
style: TextStyle(
|
2022-06-01 16:36:23 +00:00
|
|
|
|
fontFamily: Font,
|
|
|
|
|
fontSize: HeadText,
|
2022-05-31 13:48:18 +00:00
|
|
|
|
color: DarkGray,
|
2022-05-09 06:54:36 +00:00
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
MaterialButton(
|
|
|
|
|
height: 50,
|
|
|
|
|
minWidth: double.infinity,
|
2022-05-31 13:48:18 +00:00
|
|
|
|
color: primaryColor,
|
2022-05-09 06:54:36 +00:00
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
|
borderRadius: BorderRadius.circular(4)),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
Navigator.push(
|
|
|
|
|
context, MaterialPageRoute(builder: (_) => business()));
|
|
|
|
|
},
|
|
|
|
|
child: Text(
|
|
|
|
|
'Let’s Explore',
|
2022-06-01 16:36:23 +00:00
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: White,
|
|
|
|
|
fontSize: HeadText,
|
|
|
|
|
fontFamily: Font,
|
|
|
|
|
),
|
2022-05-09 06:54:36 +00:00
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|