diff --git a/lib/features/register/presentation/widgets/register_user_bottom_section.dart b/lib/features/register/presentation/widgets/register_user_bottom_section.dart index 33cef91..4b3f8e7 100644 --- a/lib/features/register/presentation/widgets/register_user_bottom_section.dart +++ b/lib/features/register/presentation/widgets/register_user_bottom_section.dart @@ -20,7 +20,6 @@ import '../../../../core/styles/app_text.dart'; import '../../../../shared/components/bloc/checkbox/checkbox_bloc.dart'; import '../../../../shared/components/bloc/checkbox/checkbox_state.dart'; import '../../../../shared/components/button_widget.dart'; -import '../../../../shared/components/text_widget.dart'; import '../bloc/register_user_bloc.dart'; import '../bloc/register_user_event.dart'; import '../bloc/register_user_state.dart'; @@ -166,13 +165,14 @@ class RegisterUserBottomSection extends StatelessWidget { }, ), const Gap(5), - ButtonWidget().textBtn( - function: () { - goRouter.pop(); - }, - text: TextWidget().text14W700(AppText.backText, - clr: AppColor.textLabelColor, - textDecoration: TextDecoration.underline)), + ButtonWidget().textBorderBtn( + clr: AppColor.plainWhite, + function: () { + goRouter.pop(); + }, + text: AppText.backText, + borderClr: AppColor.txtBorderColor, + ), ], ); }