You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
Dart
55 lines
1.6 KiB
Dart
import 'package:car_customer_app/config/constants.dart';
|
|
import 'package:car_customer_app/utils/utils.dart';
|
|
import 'package:car_customer_app/widgets/app_bar.dart';
|
|
import 'package:car_customer_app/widgets/button/show_image_button.dart';
|
|
import 'package:car_customer_app/widgets/txt.dart';
|
|
import 'package:car_customer_app/widgets/txt_field.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class LoginVerifyAccountPage extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: appBar(title: "Log In"),
|
|
body: Container(
|
|
width: double.infinity,
|
|
height: double.infinity,
|
|
padding: EdgeInsets.all(40),
|
|
child: Column(
|
|
children: [
|
|
Txt(
|
|
"Verify Account",
|
|
txtType: TxtType.heading3,
|
|
),
|
|
mFlex(1),
|
|
TxtField(
|
|
hint: "Enter Phone number to verify",
|
|
),
|
|
mFlex(2),
|
|
Row(
|
|
children: [
|
|
Expanded(
|
|
child: ShowImageButton(
|
|
onClick: () {},
|
|
title: 'With SMS',
|
|
icon: icons + "ic_sms.png",
|
|
),
|
|
),
|
|
mWidth(20),
|
|
Expanded(
|
|
child: ShowImageButton(
|
|
onClick: () {},
|
|
title: 'With Whatsapp',
|
|
icon: icons + "ic_whatsapp.png",
|
|
),
|
|
),
|
|
],
|
|
),
|
|
mFlex(10),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|