DevLogs by Technotherapist || Onboarding || Flutter Xchange

Поделиться
HTML-код
  • Опубликовано: 26 дек 2024

Комментарии • 11

  • @naveedkaimkhami2695
    @naveedkaimkhami2695 Год назад +1

    It's a great experience building real-world application following GDE's coding practices.

  • @filmstore7503
    @filmstore7503 Год назад

    zabar10 ho gaya

  • @ibrahimahmed8249
    @ibrahimahmed8249 Год назад

    Thank you for making these videos sir waleed, loving these.

  • @MuhammadIbrahim-cc4kb
    @MuhammadIbrahim-cc4kb Год назад

    Loved it

  • @filmstore7503
    @filmstore7503 Год назад

    Thank you

  • @filmstore7503
    @filmstore7503 Год назад

    sir firebase ki series bhi bana dai pleace

  • @arhamjaved7555
    @arhamjaved7555 Год назад

    Very informative ❤. It will be more exciting if you use Bloc instead of cubit so that we can also learn Bloc with clean architecture. As there are very less tutorial of application using bloc.

    • @_technotherapist
      @_technotherapist  Год назад +1

      There is not much difference between BLoC and Cubit. Cubit is one side stream, BLoC is both sides stream. You can fit any state management into this architecture, just replace the cubit file with BLoC files and instead of calling direct functions, call events from page file, everything else remains the same

    • @arhamjaved7555
      @arhamjaved7555 Год назад

      @@_technotherapist got it , thank you very much 😃

  • @BlackAppleWhiteApple
    @BlackAppleWhiteApple Год назад

    Really loved it, Initially was a bit confused about the usage of "UserCases" but at the end of the video, I got it very well. I really appreciate your effort. One thing about screen/font responsiveness. As in real projects we have Figma design and can see pixel differences b/w widgets, do we need to give direct values or use any external package like screen_util. How do you manage such things in your current big apps following this architecture?
    thanks

    • @_technotherapist
      @_technotherapist  Год назад +1

      One hack that I used to do was to calculate the ratio in the figma designs and apply the same ratio using Media Query. You can use screen util as well if that suits you.