Giter Club home page Giter Club logo

Comments (6)

Awakennn21 avatar Awakennn21 commented on June 10, 2024 1

Thank you very much.
Now everything is working perfectly 😊

from bloc.

felangel avatar felangel commented on June 10, 2024

Hi @Awakennn21 👋
Thanks for opening an issue!

Can you please share a link to a minimal reproduction sample either on GitHub or DartPad? It would be much easier to help if we're able to run/reproduce the issue locally, thanks!

from bloc.

Awakennn21 avatar Awakennn21 commented on June 10, 2024

Hi, thank you so much for responding.
Here is the link to the GitHub repo, containing the whole feature:
https://github.com/Awakennn21/Temp

from bloc.

felangel avatar felangel commented on June 10, 2024

Hi @Awakennn21 👋
This is because you're registering your bloc as a factory which means each time you use get_it to lookup a bloc, you'll get a different instance and so the BlocBuilder is listening to changes in a different instance than the once you are adding events to. The quick fix would be to change your registration to registerSingleton instead of registerFactory but in general I recommend just providing blocs using BlocProvider and to avoid mixing it with get_it for this exact reason.

Hope that helps, closing for now!

from bloc.

Awakennn21 avatar Awakennn21 commented on June 10, 2024

Hi @felangel
Thanks for your response. Just to be 100% sure. Do you want me to instead of using GetIt package inside the BlocProvider's create: function and swap that for manually creating the whole bloc there like this:

return BlocProvider(
      lazy: false,
      create: (_) => AuthenticationBloc(
        createNewUser: CreateNewUser(
          repository: AuthenticationRepository_impl(
            dataSource: const FireBaseRemoteDataSource()
          )
        ),
        authenticateUser: AuthenticateUser(
          repository: AuthenticationRepository_impl(
            dataSource: const FireBaseRemoteDataSource()
          )
        )
      ),
      child: _ShouldDisplayLogin ? LoginPage(showRegisterPage: SwitchShownPages) : RegisterPage(showLoginPage: SwitchShownPages)
    );

The problem is that this change did not help and the Bloc builder is still only reacting to the UserCreationSuccesfull, omitting the CreatingUserState. I have updated the given above repo and now there is no Get_It package in use yet the problem still remains.
Any help would be appriciated as I am pretty stuck on this

from bloc.

felangel avatar felangel commented on June 10, 2024

@Awakennn21 it's possible for a bloc to emit states faster than the UI can rebuild. For example:

emit(StateA());
emit(StateB());

In the above scenario the bloc will emit StateA and StateB before the UI can rebuild so you shouldn't assume in your BlocBuilder that builder will run with each state. This is not specific to bloc, the same would happen if you called setState back-to-back.

Hope that helps 👍

from bloc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.