I got error when add new event to my bloc in flutter. First time is ok but second time I got this error:
The following NoSuchMethodError was thrown while handling a gesture:
The method 'call' was called on null.
Receiver: null
Tried calling: call()
I add LoginEvent
to bloc and in this event I yield LoadingState.
On first time is ok, but second time is not.
This is my screen:
class _AuthScreenState extends State<AuthScreen> {
final AuthRepository repository = AuthRepository();
PageController controller;
@override
void initState() {
controller = PageController(initialPage: widget.page);
super.initState();
}
void changePage(int page) {
controller.animateToPage(
page,
curve: Curves.ease,
duration: Duration(milliseconds: 300),
);
}
@override
Widget build(BuildContext context) {
return BlocProvider(
create: (context) => AuthBloc(repository: repository),
child: BlocBuilder<AuthBloc, AuthState>(
builder: (context, state) {
return ScreenContainer(
pb: 25.0,
withTapDetector: true,
statusbarcolor: ColorPalette.primary,
statusBarIconBrightness: Brightness.light,
resizeToAvoidBottomPadding: false,
removeAppbar: true,
// loading: state is LoadingState,
child: Container(
width: double.infinity,
height: double.infinity,
child: Column(
children: [
Expanded(
child: PageView.builder(
controller: controller,
physics: NeverScrollableScrollPhysics(),
itemCount: 2,
itemBuilder: (context, position) {
return position == 0
? LoginPage(
onPageChange: () => changePage(1),
onSubmit: (req) => context.bloc<AuthBloc>().add(LoginEvent(req: req)),
)
: RegisterPage(
onPageChange: () => changePage(0),
);
},
),
),
googleLogin(context),
],
),
),
);
},
),
);
}
}
and this is my bloc:
class AuthBloc extends Bloc<AuthEvent, AuthState> {
final AuthRepository repository;
AuthBloc({
@required this.repository,
}) : super(InitialState());
@override
Stream<AuthState> mapEventToState(
AuthEvent event,
) async* {
if (event is RegisterEvent) {
yield* _mapRegisterEventToState(event.req);
} else if (event is LoginEvent) {
yield* _mapLoginEventToState(event.req);
}
}
Stream<AuthState> _mapRegisterEventToState(AuthReq req) async* {}
Stream<AuthState> _mapLoginEventToState(AuthReq req) async* {
yield LoadingState();
}
}
There is 2 Mistakes in your code: