You make great videos. No one teaches like you for free on youtube. We are all very pleased with you. But with so many videos in your playlist, I don't know where to start. So if you could please make a video on how we newbies can follow your playlist it would be great for us. Thank You.
Brother mn window operating systems use kr rha hun is mn sirf android app hi build hoti ha muje suggest kren k konsa maac os lon jo completable ho ios k liye b or aaye b minimum budget mn
image you have 10+ lists horizontally scrolling(assume a home screen of an e-commerce app), each containing a title(like popular products, featured products and many more), and an item card, practically you will create one custom widget for them and call it as many times as you need and pass respective list coming from the server. now the question is how will you update only one item?. professionally you can't use observable inside a common widget so you will need to observe the change in the home page rather than inside the common widget. should not the common widget be stateful and change the state inside the common widget (item widget, like product card). what's your take on this?
Assalam o Alaikum Sir yeh GetX ki playlist kb complete hogi ? Mean k total kitni videos hain is playlist ki Mjy 1 project mila ha or 2 months ka time ha isi lia mny pocha ap sa or mjy getX ni ati na
Instead of two arrays I created a fruit model with a bool value for isFavourite and if its true we change the color to red but I found something strange I was doing the following in function which toggles the bool for specified index " fruitsList[index].isFavourite = !fruitsList[index].isFavourite;" but the UI was not updating later when I tried the following it worked "FruitModel fruit = fruitsList[index]; fruit.isFavourite = !fruit.isFavourite; fruitsList[index] = fruit;' Now it updates the UI may I know why? because even the previous code was modifying the array
Programming explained like poetry-your videos are truly an art form.❣
Thank you for the kind words, glad you like it!
amazing Asif bhai..
Thanks
Thank you sir ❤
Most welcome
You make great videos. No one teaches like you for free on youtube. We are all very pleased with you. But with so many videos in your playlist, I don't know where to start. So if you could please make a video on how we newbies can follow your playlist it would be great for us. Thank You.
Start with flutter bootcamp 2022 playlist, do share with your friends
Kya baat he sir maza a gya Get X ka
share with your friends
Jazakallah Sir everything understandable
thank you
Thankx youuu sooo much sir ❤❤❤
You are welcome do share
Most welcome
Excellent Tutorials!
Glad you like them!
no problem if video is longer ... it will be good for us
Yeah enjoy
Nice ustad
Sharw with your friends
Sir kya flutter application banane ke liye dsa mangti hai kya companies 😢😢
ni
Excellent tutorials!
Share with your friends
Great video!
Share with your friends
great sir. Shukriya
Sharw with your friends
very very GOOD
Share with you friends
I started from Bootcamp > API > Firebase > Google Map > Getx
Next, I am considering to switch to Git Version Control. Give suggestion Sir
Go with it
I think you should now find internship.
I also did like same as you. I do all these things from asif bhai and recently i got an Internship.
@@shashwatdhingra3580 I am preparing myself for a Job.
I'm currently in my final year..
@@shashwatdhingra3580 thanks for the suggestion brother.. 🤝
In a few days my 7th semester will start.
Rising talent from Pakitan 👏
thanks
I think You are from pakistan. You are doing an excellent job. Cheers from Nepal
Thank you do share with your friends
Brother mn window operating systems use kr rha hun is mn sirf android app hi build hoti ha muje suggest kren k konsa maac os lon jo completable ho ios k liye b or aaye b minimum budget mn
M1
How can store this rxlist with get storage/ shared preferences??
i use sp but you can get storage as well
image you have 10+ lists horizontally scrolling(assume a home screen of an e-commerce app), each containing a title(like popular products, featured products and many more), and an item card, practically you will create one custom widget for them and call it as many times as you need and pass respective list coming from the server. now the question is how will you update only one item?. professionally you can't use observable inside a common widget so you will need to observe the change in the home page rather than inside the common widget. should not the common widget be stateful and change the state inside the common widget (item widget, like product card). what's your take on this?
Create an item widget and call it in your different list, then use state management to update ui with model copy with method
SizedBox(
height: 230,
child: ListView.separated(
itemCount: products.length,
scrollDirection: Axis.horizontal,
separatorBuilder: (context, index) {
return const SizedBox(width: 10);
},
itemBuilder: (context, index) {
final product = products[index];
return Obx(
() => KProductCard(
width: 130,
product: Product.copyWith(
product,
isFav: wislist.any((w) => w == product.id),
),
onTap: () {
onTap?.call(product);
},
onIconTap: () {
onFavTap?.call(product);
},
),
);
},
),
Plz more video gtex
Ok
Assalam o Alaikum
Sir yeh GetX ki playlist kb complete hogi ?
Mean k total kitni videos hain is playlist ki
Mjy 1 project mila ha or 2 months ka time ha isi lia mny pocha ap sa or mjy getX ni ati na
I have no idea kitne videos ha r kb complete hogi
Complete me ko nur upload ka spogmai 😊
ok
Why do we use a stateful class? Instead, we would have done it in the stateless widget
Init functions and many more
Instead of two arrays I created a fruit model with a bool value for isFavourite and if its true we change the color to red but I found something strange I was doing the following in function which toggles the bool for specified index " fruitsList[index].isFavourite = !fruitsList[index].isFavourite;" but the UI was not updating later when I tried the following it worked
"FruitModel fruit = fruitsList[index];
fruit.isFavourite = !fruit.isFavourite;
fruitsList[index] = fruit;' Now it updates the UI may I know why? because even the previous code was modifying the array
Try ro run hot reload and check