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.
91 lines
3.4 KiB
Dart
91 lines
3.4 KiB
Dart
|
|
import 'package:mc_common_app/classes/consts.dart';
|
|
import 'package:mc_common_app/extensions/int_extensions.dart';
|
|
import 'package:mc_common_app/extensions/string_extensions.dart';
|
|
import 'package:mc_common_app/generated/locale_keys.g.dart';
|
|
import 'package:mc_common_app/view_models/user_view_model.dart';
|
|
import 'package:mc_common_app/widgets/common_widgets/app_bar.dart';
|
|
import 'package:mc_common_app/widgets/button/show_image_button.dart';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
class LoginMethodSelectionPage extends StatelessWidget {
|
|
final String userToken;
|
|
|
|
const LoginMethodSelectionPage(this.userToken, {Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
UserVM userVM = context.read<UserVM>();
|
|
|
|
return Scaffold(
|
|
appBar: CustomAppBar( isRemoveBackButton: true, title: LocaleKeys.log_in.tr()),
|
|
body: Container(
|
|
width: double.infinity,
|
|
height: double.infinity,
|
|
padding: const EdgeInsets.all(20),
|
|
child: SingleChildScrollView(
|
|
child: Column(
|
|
children: [
|
|
LocaleKeys.loginSelection.tr().toText(fontSize: 20, letterSpacing: -1.44,),
|
|
30.height,
|
|
LocaleKeys.welcomeBack.tr().toText(fontSize: 20, letterSpacing: -1.44,),
|
|
40.height,
|
|
Row(
|
|
children: [
|
|
Expanded(
|
|
child: ShowImageButton(
|
|
onClick: () {
|
|
userVM.performBasicOtpLoginSelectionPage(context, userToken: userToken,appType: userVM.currentAppType);
|
|
},
|
|
title: LocaleKeys.fingerPrint.tr(),
|
|
icon: icons + "ic_fingerprint.svg",
|
|
),
|
|
),
|
|
20.width,
|
|
Expanded(
|
|
child: ShowImageButton(
|
|
onClick: () {
|
|
userVM.performBasicOtpLoginSelectionPage(context, userToken: userToken,appType: userVM.currentAppType);
|
|
},
|
|
title: LocaleKeys.faceRecognition.tr(),
|
|
icon: icons + "ic_face.svg",
|
|
),
|
|
),
|
|
],
|
|
),
|
|
40.height,
|
|
Row(
|
|
children: [
|
|
Expanded(
|
|
child: ShowImageButton(
|
|
onClick: () {
|
|
userVM.performBasicOtpLoginSelectionPage(context, userToken: userToken,appType: userVM.currentAppType);
|
|
},
|
|
title: LocaleKeys.SMS.tr(),
|
|
icon: icons + "ic_sms.svg",
|
|
),
|
|
),
|
|
20.width,
|
|
Expanded(
|
|
child: ShowImageButton(
|
|
onClick: () {
|
|
// navigateWithName(context, AppRoutes.dashboard);
|
|
userVM.performBasicOtpLoginSelectionPage(context, userToken: userToken,appType: userVM.currentAppType);
|
|
},
|
|
title: LocaleKeys.whatsapp.tr(),
|
|
icon: icons + "ic_whatsapp.svg",
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|