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.
65 lines
2.1 KiB
Dart
65 lines
2.1 KiB
Dart
import 'package:car_provider_app/config/routes.dart';
|
|
import 'package:car_provider_app/utils/navigator.dart';
|
|
import 'package:car_provider_app/utils/utils.dart';
|
|
import 'package:car_provider_app/widgets/app_bar.dart';
|
|
import 'package:car_provider_app/widgets/show_fill_button.dart';
|
|
import 'package:car_provider_app/widgets/txt.dart';
|
|
import 'package:car_provider_app/widgets/txt_field.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class Profile2Page 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 2/3",
|
|
txtType: TxtType.heading3,
|
|
),
|
|
Txt(
|
|
"licenses & certificatoins",
|
|
),
|
|
mHeight(12),
|
|
TxtField(
|
|
hint: "Commercial Record N.O",
|
|
// isButtonEnable: true,
|
|
isNeedFilterButton: true,
|
|
postfixData: Icons.attach_file,
|
|
),
|
|
mHeight(12),
|
|
TxtField(
|
|
hint: "Chamber of Commerce N.O",
|
|
isNeedFilterButton: true,
|
|
postfixData: Icons.attach_file,
|
|
),
|
|
mHeight(12),
|
|
TxtField(
|
|
hint: "VET Certificate N.O",
|
|
isNeedFilterButton: true,
|
|
postfixData: Icons.attach_file,
|
|
),
|
|
mHeight(30),
|
|
ShowFillButton(
|
|
title: "Save",
|
|
width: double.infinity,
|
|
onPressed: () {
|
|
navigateWithName(context, AppRoutes.profile3);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|