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.
car_customer_app/lib/pages/user/complete_profile_page.dart

68 lines
2.0 KiB
Dart

4 years ago
import 'package:car_customer_app/utils/utils.dart';
import 'package:car_customer_app/widgets/app_bar.dart';
import 'package:car_customer_app/widgets/show_fill_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 CompleteProfilePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: appBar(title: "Sign Up"),
body: Container(
width: double.infinity,
height: double.infinity,
child: SingleChildScrollView(
child: Padding(
padding: EdgeInsets.all(40),
child: Column(
children: [
Txt(
"Complete Profile",
txtType: TxtType.heading3,
),
mHeight(12),
TxtField(
hint: "First Name",
),
mHeight(12),
TxtField(
hint: "Surname",
),
mHeight(12),
TxtField(
hint: "Email",
),
mHeight(12),
TxtField(
hint: "Create Password",
),
mHeight(12),
TxtField(
hint: "Confirm Password",
),
mHeight(12),
TxtField(
hint: "Phone Number",
),
mHeight(50),
Txt(
"By creating an account you agree to our Terms of Service and Privacy Policy",
textAlign: TextAlign.center,
),
mHeight(16),
ShowFillButton(
title: "Continue",
width: double.infinity,
onPressed: () {},
),
],
),
),
),
),
);
}
}