Due to video was lengthy some portion of create group page, I will cover in the next video 👐👐👐👐. I will upload the next part soon🙌🙌🙌
@Mightypurush3 жыл бұрын
No problem brother.keep it up😄😄😄
@ekanemekemini74332 жыл бұрын
I appreciate your work. Thanks very very much for these videos. I pray your brand and business gets very big in years to come. Watching from Nigeria
@Mightypurush3 жыл бұрын
You are doing greate job. Keep it up.👌👌👌
@aelghandour66183 жыл бұрын
Great work bro❤👏👏
@ryantoh67253 жыл бұрын
GREAT WORK MAN KEEP IT UP!!
@TechWithDnes3 жыл бұрын
Awesome... Keep it up.
@TechnicalEncoder2 жыл бұрын
hello sir, I did same work as you did in video but on the tap of number the check box not appear. Kindly help me.
@TechnicalEncoder2 жыл бұрын
sir help me please... i'm waiting.
@yashsoni1976 Жыл бұрын
have you got the solution
@staplepin80993 жыл бұрын
awosome videos best flutter tutor
@AbdulrahmanIsmailMohammed2 жыл бұрын
I'm having the same problem have you found a solution
@sumayyariyas85643 жыл бұрын
Good work..keep going on.. Could you please do a video how to integrate google fit to flutter app
@DevStack3 жыл бұрын
Thanks brother for supporting this channel 🙌🙌🙌 Sure will try to work on your topic too😀😀
@mohammedaminibrahim77173 жыл бұрын
I have an error on line 27 ContactCard.dart page of this video.. The error is "A nullable expression can't be used as a condition"
@mohammedaminibrahim77173 жыл бұрын
@@DevStack I have an error on line 27 ContactCard.dart page of this video.. The error is "A nullable expression can't be used as a condition" select.contact ? Position()
@happinin2 жыл бұрын
@@mohammedaminibrahim7717 in the ChatModel, add this line in the constructor instead of just 'this.select' put 'this.select = false' at the end.
@mauricearida9001 Жыл бұрын
why is "onTap" of InkWell not working !!!!!!! Can someone help please
@saurabhchauhan4516 Жыл бұрын
Hello. If you found out the solution why the Ontap() is not working please share the solution.
@yashsoni1976 Жыл бұрын
@@saurabhchauhan4516 have u got the solution
@qaziasfand3413 Жыл бұрын
there is probably a syntax error in your code check the if else block in on tap and use of ==/= properly @@saurabhchauhan4516
@phamtrungkien615011 ай бұрын
@@yashsoni1976 I got the same problem with u all. I got solution as well. Look up where you place list of "contacts" and "groups", you must place them as class properties not inside the build() method
@wahibabenghaffor11 ай бұрын
check if you are using comparison operator == instead of assignement operator = onTap: () { if (contacts[index].select == false) { setState(() { contacts[index].select = true; // Use = for assignment groups.add(contacts[index]); }); } else { setState(() { contacts[index].select = false; // Use = for assignment groups.remove(contacts[index]); }); } },
@Naveenkumar-oh3ks3 жыл бұрын
hello bhaia, one error is coming while making a class and declaring its parameters, it is necessary to make constructor field required for each parameter but i don't want this , otherwise i will have to initialize unrequired data everywhere
@toddh23272 жыл бұрын
@Naveen, I had the same issue. Inside the ChatModel.dart, Declare 'status' as: bool select = false; Then, in the constructor below it: this.select = false, FInally, in the 'ContactCard.dart' declaration of the object, class ContactCard({key? key, required this.contact}) ... using the 'required' keyword should work if the 'select' member is declared and initialized correctly in ChatModel.dart Hope that helps.
@sherifbadawy81882 жыл бұрын
awesome !!!
@durgeshpandey85343 жыл бұрын
i had made chat app according to you it works on emulator but how to implement this on real android device please tell me brother