112 lines
4.0 KiB
Dart
112 lines
4.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:gap/gap.dart';
|
|
import 'package:tanami_app/shared/components/loader.dart';
|
|
import 'package:tanami_app/shared/components/toast_message.dart';
|
|
|
|
import '../../../../core/routes/route_name.dart';
|
|
import '../../../../core/routes/routes.dart';
|
|
import '../../../../core/styles/app_color.dart';
|
|
import '../../../../core/styles/app_text.dart';
|
|
import '../../../../shared/components/button_widget.dart';
|
|
import '../../../../shared/components/text_widget.dart';
|
|
import '../../../countrySelection/presentation/bloc/choose_country_bloc.dart';
|
|
import '../bloc/login_bloc.dart';
|
|
import '../bloc/login_event.dart';
|
|
import '../bloc/login_state.dart';
|
|
|
|
class BottomSection extends StatelessWidget {
|
|
const BottomSection({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final radioBloc = context.read<RadioBloc>();
|
|
return Column(
|
|
children: [
|
|
const Gap(12),
|
|
Align(
|
|
alignment: Alignment.topRight,
|
|
child: ButtonWidget().textBtn(
|
|
function: () {
|
|
goRouter.goNamed(RouteName.loginScreen);
|
|
},
|
|
text: TextWidget().tex15W400(AppText.forgorPassword,
|
|
clr: AppColor.forgotPassButtonColor,
|
|
textDecoration: TextDecoration.underline)),
|
|
),
|
|
const Gap(20),
|
|
BlocConsumer<LoginBloc, LoginState>(
|
|
listener: (context, state) {
|
|
if (state is LoginLoading) {
|
|
Loader.loader(context);
|
|
} else if (state is LoginSuccess) {
|
|
successToastMessage(context, "login successful !");
|
|
goRouter.pop();
|
|
|
|
goRouter.goNamed(RouteName.biometricScreen);
|
|
} else if (state is LoginFailure) {
|
|
goRouter.pop();
|
|
errorToastMessage(
|
|
context,
|
|
state.error,
|
|
);
|
|
}
|
|
},
|
|
builder: (context, state) {
|
|
bool isButtonEnabled = false;
|
|
if (state is LoginFieldsState) {
|
|
isButtonEnabled = state.areFieldsFilled;
|
|
} else if (state is LoginSuccess || state is LoginFailure) {
|
|
isButtonEnabled = true;
|
|
}
|
|
return Container(
|
|
margin: const EdgeInsets.symmetric(
|
|
horizontal: 16,
|
|
),
|
|
width: 1.sw,
|
|
height: 56.h,
|
|
child: ButtonWidget().elevatedBtn(
|
|
txtClr: isButtonEnabled
|
|
? AppColor.plainWhite
|
|
: AppColor.inactiveBtnTxtColor,
|
|
function: () {
|
|
isButtonEnabled
|
|
? context.read<LoginBloc>().add(
|
|
LoginSubmitted(
|
|
context
|
|
.read<LoginBloc>()
|
|
.phoneNumberTextField
|
|
.text,
|
|
context
|
|
.read<LoginBloc>()
|
|
.passwordTextField
|
|
.text,
|
|
""),
|
|
)
|
|
: null;
|
|
},
|
|
text: AppText.loginText,
|
|
clr: isButtonEnabled
|
|
? AppColor.primaryColor2
|
|
: AppColor.inactiveBtnColor,
|
|
),
|
|
);
|
|
},
|
|
),
|
|
const Gap(5),
|
|
ButtonWidget().textBtn(
|
|
function: () {
|
|
radioBloc.resetSelection();
|
|
goRouter.pushNamed(RouteName.registerStepScreen, pathParameters: {
|
|
"fromScreentype": "login",
|
|
});
|
|
},
|
|
text: TextWidget().tex14W700(AppText.signUpText,
|
|
clr: AppColor.textLabelColor,
|
|
textDecoration: TextDecoration.underline)),
|
|
],
|
|
);
|
|
}
|
|
}
|