#15 Flutter Manage User Session & Singleton Patterns | Flutter Bloc Pattern Clean Code Architecture

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 10

  • @ArinderSuri
    @ArinderSuri 3 หลายเดือนก่อน

    thanks sir, such a great videos you have provide, i have learned lot of things related to coding

  • @dailyfacts2095
    @dailyfacts2095 4 หลายเดือนก่อน

    if I am not wrong we could have also used getIt package and register singleton pattern right instead of this ? I hope I am right coz I am confused

    • @thetechbrotherss
      @thetechbrotherss  4 หลายเดือนก่อน

      Singleton pattern provides single point entry, so we don’t need getit

    • @dailyfacts2095
      @dailyfacts2095 4 หลายเดือนก่อน

      @@thetechbrotherss but i got really confused what is the difference between both. When to use this particularly? Thank you in advance

  • @asimreyazuddin3494
    @asimreyazuddin3494 5 หลายเดือนก่อน

    When I press back button after logging out, it however takes me back to home screen, so I made the following changes on the logout button if anyone else experiences the same issue:
    ListTile(
    leading: const Icon(Icons.logout),
    title: const Text('LogOut'),
    onTap: () async {
    LocalStorage localStorage = LocalStorage();
    await localStorage.clearValue('token');
    await localStorage.clearValue('isLogin');
    Navigator.pushReplacement(context,
    MaterialPageRoute(builder: (context) => LoginScreen()));
    },
    ),

  • @HomeHome-wy6ox
    @HomeHome-wy6ox 6 หลายเดือนก่อน +1

    🎉🎉🎉