Flutter Hive Database CRUD Operations

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

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

  • @emmanueljoseph2687
    @emmanueljoseph2687 2 года назад +10

    A masterpiece from a master tutor yet again. Thank you for making flutter learning super interesting.

  • @sb-dor
    @sb-dor 2 года назад +3

    Presently working on flutter I have came across with this package. Going learn this at this weekend. Thank you so much sir.

  • @kingdre2485
    @kingdre2485 2 года назад +9

    Can you do part 2 syncing Firestone data to hive😢

  • @morshedraiankhan6968
    @morshedraiankhan6968 Год назад +5

    Your videos are to the point. Explanations are also clear. Thanks ❤

  • @timurniyazov5160
    @timurniyazov5160 2 года назад

    to clear text inside textfields you can actually do "textfield controller name".clear inside your clear fucntion

  • @jashwanthgowda3362
    @jashwanthgowda3362 2 года назад +5

    Hi sir,
    Can you make part-2 video
    Showing how to sync the local db to server db
    Pls 🙏

  • @ItsMe-rl7dt
    @ItsMe-rl7dt 2 года назад +1

    Assalamualaikum sir, can you do a tutorial on how to keep bottomnavigator on even if we navigate to different page? thankyou

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

    Thank you,, this helped me a lot.. followed it to a T and its working

  • @allSignIn-ld5bn
    @allSignIn-ld5bn 7 месяцев назад

    Brilliantly explained. Best on Hive demo

    • @dbestech
      @dbestech  7 месяцев назад

      Wow, thanks!

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

    Thanks... can you please maka a video on Isar database ( whose developer is same as that of Hive )...

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

    Which backend do you recommend for a complete beginner developing a flutter mobile app

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

    i would like to create a backup and restore for the notes so it will not be gone even after deleting the app what is the best approach?

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

    perfect perfect______perfect___beginner__friendly____

  • @clovisstanford6515
    @clovisstanford6515 11 месяцев назад

    Can we use it with different screens with edit and the homescreen it's very difficult to do flutter , my head gonna blow up , When i need to share the data to the homescreen I can't understand this.

  • @henryoncode
    @henryoncode 7 месяцев назад

    Tip: To fix the issue where you click on edit, close then click on add and it shows text in the text field, empty the TextControllers if the itemKey is null. So in the _showForm function, change it to this:
    if (itemKey != null) {
    final existingItem =
    _items.firstWhere((element) => element['key'] == itemKey);
    _nameController.text = existingItem['name'];
    _quantityController.text = existingItem['quantity'];
    } else {
    // Clear the text fields
    _nameController.text = '';
    _quantityController.text = '';
    }

    • @dbestech
      @dbestech  6 месяцев назад

      Thanks a lot

  • @amirmuradov1645
    @amirmuradov1645 Год назад +2

    crazy video bro but how can i add time and data

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

    Thanks... another great tutorial.. one query sir.. How about relational data management in Hive?. which is better for relational local database management?.. hive or Isar or realm or any other?

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

    How can I call _items from another page?
    Like I'm using these hive function in add to cart button and I want to call this _items data in cart page. How Can I do it?

  • @mahmoud_ali_963
    @mahmoud_ali_963 7 месяцев назад

    thank you very much for the video 🥰❤❤❤❤ you just made my day

    • @dbestech
      @dbestech  7 месяцев назад +1

      I'm so glad!

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

    thank you for all bro

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

    Please i haven't see how to create the database in the while tutorial, Please is it done here you are just show the crud operation

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

    well.. i have been listening you for a long while...but this tutorial is way more difficult and tricky and non friendly...like i am exectly coping it and still facing buch of errors every time

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

    What is the visual studio theme name?

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

    Thank you so much for the tutorial, I have a question. So I'm using an Authentication system with firebase and wondering is it possible to have different local database for different user? and if so can you do tutorial for that? once again thank you so much for the tutorial

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

      yes, possible. but why would you do it? one database is enough

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

      @@dbestech For example in a ToDo app, If we login to one account, the app will show what that account has written in his list of ToDo, and if we logout and login to other account, it will show different ToDo list. I hope that makes sense

    • @CrescentP-wi7ps
      @CrescentP-wi7ps Год назад

      a single database can hold multiple users. Think of it as rows in a spredsheet. you can have multilple rows, while the coloumns hold other values.@@yadayada5186

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

      @@yadayada5186 that's the default setting. one database is enough. each data object will be tied to that particular user's credentials.

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

    Is there an actual way to connect hive with other forms of cloud databases like for example firestore or even MySQL, or do I have to implement them separately?

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

      Hive sits in the app itself, mysql is in the server side. So they are different ideas.

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

      There's not direct connection

  • @artem-ai
    @artem-ai Год назад

    It is great! Thank you very much

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

    sir, what's the best database you would recommend for a flutter developer???

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

      in production I will use Hive and MySQL

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

      @@dbestech I use Realm and MongoDB for an app I'm currently working on. Realm is new to flutter.

  • @itcook5874
    @itcook5874 2 года назад

    What's is state management you used here?

    • @dbestech
      @dbestech  2 года назад +1

      don't need any state managment here. used stateful class with setState()

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

    The element type 'String' can't be assigned to the map value type 'Map'. (Documentation)
    facing this error while assigning the controllers in in Elevated buttons....and the controllers are still diving errors

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

      were you able to solve it?

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

      @@dbestech thats still pendiing brother😥

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

      i am fan of your conceptual depths...will you advice me regarding

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

      @@asadmaeem8262 tell me the timeline

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

      @@dbestech its Pakistan 5:52 the time i am commenting

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

    Please make video on update operation on this project

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

      I think it's included.

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

    which code editor are you using?
    Loved your content🥰

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

      android studio with plugin.

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

    amazing!

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

    Thank you! very good!

  • @None-vj7vu
    @None-vj7vu 7 месяцев назад

    super interesting video. Thanks a lot .
    may I ask you smth?
    it would be really good if you publish this code into your github.
    thanks in advance.

    • @dbestech
      @dbestech  6 месяцев назад

      It's an old tutorial. I did not preserve the code.

  • @suluvsky
    @suluvsky 2 года назад

    Can you make a video about Flutter Hive Database CRUD with flutter_bloc ?

    • @dbestech
      @dbestech  2 года назад

      yes, I can

    • @suluvsky
      @suluvsky 2 года назад

      @@dbestech thank you very much

  • @bashiruibrahim8443
    @bashiruibrahim8443 2 года назад

    Wslm Masha Allah

  • @gyanupadhyay9473
    @gyanupadhyay9473 2 года назад

    Make a video on Closures in flutter plz🙏

  • @vishwateja266
    @vishwateja266 2 года назад

    hive data disappears when open after like after some time !

    • @dbestech
      @dbestech  2 года назад

      I haven't experienced.

    • @vishwateja266
      @vishwateja266 2 года назад

      @@dbestech can u like guess reason y does it happens idk what is wrong would be a great help no help found in stackover flow or in git repo issues

  • @murderer1197
    @murderer1197 2 года назад

    can I add videos in hive database?

  • @Mohamed-wk8rl
    @Mohamed-wk8rl Год назад

    How can I find this code ?

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

    May i have source code pls. Github

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

    thanks

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

    Is hive outdated?

  • @peshawaamin3083
    @peshawaamin3083 2 года назад

    ❤️❤️

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

    Waalaikumsallam

  • @nadamtv419
    @nadamtv419 2 года назад

    sir can you give me sorce code?

    • @dbestech
      @dbestech  2 года назад

      did you follow the link?

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

      Hey,@@dbestech! Where is the link? Thanks for your videos, they´re awesome!

  • @SahiraSahira-x5u
    @SahiraSahira-x5u 4 месяца назад

    Sorce code?

    • @dbestech
      @dbestech  4 месяца назад

      Old article. Did not preserve it
      📕📕📕Learn about our excellent course
      Flutter Multi Vendor App
      www.dbestech.com/tutorials/flutter-multi-vendor-app
      Flutter Single Vendor App
      www.dbestech.com/tutorials/flutter-food-delivery-app-e-commerce-for-ios-and-android
      📕📕📕📕📕

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

    source code ?

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

    source code!

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

    thanks