|
|
|
|
@ -2,7 +2,6 @@ import 'package:diplomaticquarterapp/analytics/flows/login_registration.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/analytics/google-analytics.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/config/shared_pref_kay.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/config/size_config.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/core/viewModels/project_view_model.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/locator.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/models/Authentication/check_user_status_reponse.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/models/Authentication/check_user_status_req.dart';
|
|
|
|
|
@ -56,7 +55,6 @@ class _Register extends State<Register> {
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return AppScaffold(
|
|
|
|
|
|
|
|
|
|
appBarTitle: TranslationBase.of(context).register,
|
|
|
|
|
isShowAppBar: false,
|
|
|
|
|
isShowDecPage: false,
|
|
|
|
|
@ -158,7 +156,8 @@ class _Register extends State<Register> {
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Padding(
|
|
|
|
|
padding: EdgeInsets.all(10), child: DefaultButton(TranslationBase.of(context).cancel, () {
|
|
|
|
|
padding: EdgeInsets.all(10),
|
|
|
|
|
child: DefaultButton(TranslationBase.of(context).cancel, () {
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
|
locator<GAnalytics>().loginRegistration.registration_cancel(step: 'enter details');
|
|
|
|
|
}, textColor: Colors.white, color: Color(0xffD02127))),
|
|
|
|
|
@ -172,9 +171,11 @@ class _Register extends State<Register> {
|
|
|
|
|
}, textColor: Colors.white, color: isButtonDisabled == true ? Colors.grey : Color(0xff359846))),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),)
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),);
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Future<Null> _selectDate(BuildContext context) async {
|
|
|
|
|
|