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.
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
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 ?
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.
@@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.
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.
Quality Content with Clean Explanation
Glad you liked it
love from Bangladesh
Thanks for the support 😁
Happy New Year sir.
Happy New Year Sumit!
Frontend Ep. 2 will be uploaded on 31 December 2021 at 06:00 PM 🕕
@AkhiriIshq December**** 😂😂
ok sir
best explanation and nice project.
Glad you think so!
thanks sir
How to decide when to use Baas such as Supabase vs custom backend with Node and Postgres ?
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.
@@RohitSemriwal Understood. Thank you !!!
Hello Sir,
Sementics kya hote hai?
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
@@RohitSemriwal Thanks sir
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 ?
AWS works fine I think if you have MasterCard or Visa.
Hello Sir,
Question: Flutter me offstage kya hai?
Offstage ham use krte h kisi widget ki dimensions ko measure krne ke liye, us widget ko screen pe load kiye bina.
@@RohitSemriwal tanks sir
Sir you won't do like functionality in nodejs and flutter?
And please dont ask me resason because its annoy to give you reply🙏🏽🙏🏽
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.
Happy new year.
Hello sir my friend know c language. he do not know core java then he can learn dart and flutter.
Yes anyone can learn Dart/Flutter, there's always a first time for everything.
Happy New Year! 🎉📈
Great Sir Hopefully We Enter Next Year With 400 Subscribers. Sir If Possible implement change language settings like English/Hindi with Provider.
Thanks for the wishes, I'll cover multi-language using Provider soon 😁
@@RohitSemriwal Sir For Search Notes Indexing implement kaise kare with provider
@@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.
If we add 1000 notes then how paging implemented or category
We'll add paging later on 😁
Without knowledge of kotlin can we learn dart & flutter but I have knowledge of core java
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.