#Google

Поділитися
Вставка
  • Опубліковано 5 вер 2024
  • This tutorial explains how you can do Form validation in a beginner way, also using Providers and using BloC state management library.
    Provider:
    pub.dev/packag...
    Flutter BloC:
    pub.dev/packag...
    Source code:
    github.com/MrV...
    Provider: A Flutter package for state management, allowing easy sharing of data across the widget tree using InheritedWidget. Simplifies managing app state and reduces boilerplate code.
    Keywords: Flutter, package, state management, data sharing, InheritedWidget, app state, boilerplate code.
    Flutter Bloc: A Flutter package for implementing the BLoC (Business Logic Component) pattern. Provides a reactive way of managing app state and separating business logic from UI. Helps in building scalable and maintainable Flutter applications.
    Keywords: Flutter, package, BLoC pattern, reactive, app state management, business logic, UI separation, scalability, maintainability.

КОМЕНТАРІ • 15

  • @vlknkc
    @vlknkc Рік тому +2

    Best tutorial, Can you make a firebase auth example with the same logic?

  • @gyanupadhyay9473
    @gyanupadhyay9473 11 місяців тому +1

    make more content on bloc state management and plz tell us when to use a single state with copyWith method with bloc and when to use multiple state in bloc??

  • @vipinvijayan6034
    @vipinvijayan6034 Рік тому +1

    Excellent tutorial

  • @thingsforyou8644
    @thingsforyou8644 11 місяців тому +1

    Fabulous tutorial

  • @codespower6953
    @codespower6953 Рік тому +1

    Excellent Tutorial

  • @rahulmukhiya9975
    @rahulmukhiya9975 Рік тому +2

    on 30:38 you still forget to change the 'name' parameter in the _onEmailChanged and _onPhoneChanged in the state.Copywith method....it should be _onEmailChanged( // email: BlocFormItem) and _onPhoneChanged(// phone: BLocFormItem)....it took me 2 days to figure out that goddamn error.

  • @orkhan7289
    @orkhan7289 9 місяців тому +1

    Excellent tutorial. Can you please write it with the Cubit state management?

    • @MobileProgrammer
      @MobileProgrammer  9 місяців тому +1

      thanks. i will try but too busy.

    • @orkhan7289
      @orkhan7289 9 місяців тому +1

      @@MobileProgrammer I will wait for your video :)

  • @TrikNgonlen
    @TrikNgonlen Рік тому +1

    Do you have the GetX version for this topic? Or I missed it?

    • @MobileProgrammer
      @MobileProgrammer  Рік тому +2

      I haven’t create one with Getx. It’s in my plan.

    • @TrikNgonlen
      @TrikNgonlen Рік тому

      @@MobileProgrammer AWESOME! This why I hit your red button...you always give us the best...

  • @gyanupadhyay9473
    @gyanupadhyay9473 10 місяців тому +1

    31:59 main