Notes App using Flutter & Node.js | Frontend Ep. 1 - Models and working with User Interface | Hindi

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

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

  • @kalashsaini1809
    @kalashsaini1809 2 года назад +2

    Quality Content with Clean Explanation

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

    love from Bangladesh

  • @sumitkumar-jn8he
    @sumitkumar-jn8he 2 года назад

    Happy New Year sir.

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

    Frontend Ep. 2 will be uploaded on 31 December 2021 at 06:00 PM 🕕

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

    best explanation and nice project.

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

    thanks sir

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

    How to decide when to use Baas such as Supabase vs custom backend with Node and Postgres ?

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

      Use BAAS such as Supabase, Firebase when you want to create a MVP and just get your product out quickly. I'll suggest switching to a custom backend as soon as possible because services like Firebase tend to get very expensive as the app grows.

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

      @@RohitSemriwal Understood. Thank you !!!

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

    Hello Sir,
    Sementics kya hote hai?

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

      Semantics basically different symbols ke meaning hote h..
      Jaise 4+5 ham likhte h to hame pta h '+' symbol se kya hoga.
      To wo semantics hote h.
      To syntax hota h kisi cheez ko likhne ka tareeka, aur semantics hota h uska meaning

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

      @@RohitSemriwal Thanks sir

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

    I am not able to host my node js server code on AWS or Heroku because they are not accepting Indian credit cards. I believe within a year some bank rules were changed. So what would you suggest ? Other Reliable options to host ?

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

      AWS works fine I think if you have MasterCard or Visa.

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

    Hello Sir,
    Question: Flutter me offstage kya hai?

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

      Offstage ham use krte h kisi widget ki dimensions ko measure krne ke liye, us widget ko screen pe load kiye bina.

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

      @@RohitSemriwal tanks sir

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

    Sir you won't do like functionality in nodejs and flutter?
    And please dont ask me resason because its annoy to give you reply🙏🏽🙏🏽

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

      I know you're frustrated 😂, but I'm not asking for the reason.
      I'm asking about how do you want to implement the like functionality.
      I just need a bit of explanation on how the like functionality will sit in our app.

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

    Happy new year.
    Hello sir my friend know c language. he do not know core java then he can learn dart and flutter.

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

      Yes anyone can learn Dart/Flutter, there's always a first time for everything.
      Happy New Year! 🎉📈

  • @sanjeevkumar-nq8we
    @sanjeevkumar-nq8we 2 года назад

    Great Sir Hopefully We Enter Next Year With 400 Subscribers. Sir If Possible implement change language settings like English/Hindi with Provider.

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

      Thanks for the wishes, I'll cover multi-language using Provider soon 😁

    • @sanjeevkumar-nq8we
      @sanjeevkumar-nq8we 2 года назад

      @@RohitSemriwal Sir For Search Notes Indexing implement kaise kare with provider

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

      @@sanjeevkumar-nq8we Take two lists, one that holds the complete data and one that will be used for filtering.
      List completeData;
      List searchData;
      Now, when you first load the completeData, make sure you set the searchData equal to that as well.
      searchData = completeData;
      Now, use the searchData list to show the notes in a listview or the widget of your choice.
      Now, for the search, when chaning a textfield. i.e.
      onChanged: (val) {
      notesProvider.searchFor(val);
      }
      // Inside the Notes Provider
      void searchFor(String query) {
      searchData = completeData.where((element) => element.title.toLowerCase().contains(query.toLowerCase())).toList();
      notifyListeners();
      }
      This way, you'll have all your data inside the completeData list and you can keep filtering the searchData based on the query.

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

    If we add 1000 notes then how paging implemented or category

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

    Without knowledge of kotlin can we learn dart & flutter but I have knowledge of core java

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

      Yes, you don't need to have any experience with Kotlin to learn or work in Flutter.
      Flutter uses a programming language called Dart. So yeah no need of learning Kotlin or Swift.