Пікірлер
@AhmadTheTech
@AhmadTheTech 14 сағат бұрын
sir please default splash screen remove karna sikha dey 🙏
@minhchienle3035
@minhchienle3035 Күн бұрын
I have a question that I'd like you to answer: why do you use the model with the freezed package but not use bloc with freezed as well?
@thetechbrotherss
@thetechbrotherss Күн бұрын
I got your point, answer is we can do that. But i focus on keeping it real bloc, if i started using freezed with events and stats it would little bit change the syntax that author uses or content you will find to learn bloc and i believe it will be little bit hard to learn bloc then. This was my main reason. But we can do that as well
@minhchienle3035
@minhchienle3035 10 сағат бұрын
@@thetechbrotherss Thank you very much for your response! Thank you for making such great videos, I've learned a lot from your channel.
@minhchienle3035
@minhchienle3035 Күн бұрын
tks U so much
@thetechbrotherss
@thetechbrotherss Күн бұрын
You are welcome
@SehrishMoujahid
@SehrishMoujahid Күн бұрын
great teacher
@thetechbrotherss
@thetechbrotherss Күн бұрын
thanks
@sanjayyogi5658
@sanjayyogi5658 Күн бұрын
Thank you I learned from you. Sir please make a play list animations and responsive UI and windows or web and app same ui how we can make because sir some time app ui looking great but windows bad how we can use same code with both app and web .. please sir make play list..
@SehrishMoujahid
@SehrishMoujahid Күн бұрын
cocapod not installing in m2 macbook pro plz help
@LEARNCOMPUTER-ie6pr
@LEARNCOMPUTER-ie6pr Күн бұрын
I'm 16 years old student flutter
@LEARNCOMPUTER-ie6pr
@LEARNCOMPUTER-ie6pr Күн бұрын
Plz😊
@AhmadMirza-pb2su
@AhmadMirza-pb2su Күн бұрын
Source Code: void main(){ Book book1=Book('Got','Alex', '23451', true); Book book2=Book('Finance', 'Asmaiyl', '987654', true); Member member=Member('Joe','a2'); Member member2=Member('Maria', 'a2'); Library library=Library(); library.addBook(book1); library.addBook(book2); library.booksList(); library.loanaBook(book1, member,); library.booksList(); } class Library{ List<Book> books=[]; List<LoanBook> loanBook=[]; void addBook(Book book){ books.add(book); } void loanaBook(Book book,Member member,){ if(book.isAvailable=true){ book.isAvailable=false; loanBook.add(LoanBook(book, member, DateTime.now(),null )); }else{ print('Book ${book.name} are not available'); } } void booksList(){ print('----List of all Books----'); for(var loannBook in loanBook){ print('Title${loannBook.book.name}, Writen by ${loannBook.book.author}, Book number are${loannBook.book.bookNo}, Avilable : ${loannBook.book.isAvailable}'); }} } class LoanBook{ Book book; Member member; DateTime? loanDate; DateTime? returnDate; LoanBook(this.book,this.member,this.loanDate,this.returnDate); void returnBook(){ returnDate=DateTime.now(); book.isAvailable=true; } } class Book{ String? name; String? author; String? bookNo; bool? isAvailable; Book(this.name,this.author,this.bookNo,this.isAvailable); } class Member{ String? name; String? memberId; Member(this.name,this.memberId); }
@SamamaAli-kq9mr
@SamamaAli-kq9mr Күн бұрын
why is the login function not a FUTURE fucntin?
@thetechbrotherss
@thetechbrotherss Күн бұрын
We are not returning anything, we can do that. You can always tweak things based on your requirement link
@user-uu7rp7xb5g
@user-uu7rp7xb5g Күн бұрын
brother where is the BBC link?
@editit9227
@editit9227 Күн бұрын
Bro what is the next playlist? Do on mongodb with a complete application Waiting for it
@thetechbrotherss
@thetechbrotherss Күн бұрын
No sure
@syedshabbarraza6384
@syedshabbarraza6384 Күн бұрын
16:32 Asif bhai aap ny taqreeban 2 videos me 2 different methods use kiye hai Future builder ky 1 baar list mein data store krwaya or 1 baar directly lakin difference bilqul discuss hi ni kiya
@thetechbrotherss
@thetechbrotherss Күн бұрын
thanks
@syedshabbarraza6384
@syedshabbarraza6384 Күн бұрын
@@thetechbrotherss Asif bhai😅 kuch btayein bhi to
@ahmedbaig8543
@ahmedbaig8543 2 күн бұрын
GetX is Easy When Learning with Asif taj
@thetechbrotherss
@thetechbrotherss Күн бұрын
No doubt hahaha, focus on bloc
@ASHWANIKUMAR-hj3lx
@ASHWANIKUMAR-hj3lx 2 күн бұрын
Ok sir
@thetechbrotherss
@thetechbrotherss Күн бұрын
thanks
@anilkore4194
@anilkore4194 2 күн бұрын
This is really great series. Thanks for it. I really appreciate this.
@thetechbrotherss
@thetechbrotherss Күн бұрын
thanks
@MUHAMMADARSLAN-wr1xj
@MUHAMMADARSLAN-wr1xj 2 күн бұрын
Aoa Sir, json to dart mei koi response naii a raha jase apka aya tha token wala
@thetechbrotherss
@thetechbrotherss Күн бұрын
Api response check kro postman ma
@niamatiqbal8837
@niamatiqbal8837 2 күн бұрын
sir the API is not working, now what to do?
@thetechbrotherss
@thetechbrotherss Күн бұрын
use json place holder api and follow the process
@shanattari8042
@shanattari8042 2 күн бұрын
sir desktop k liye kon si database use hogi jis main data save bhi rahe maine hive use ki hai pr restart pr data clear ho jata hai
@thetechbrotherss
@thetechbrotherss Күн бұрын
Desktop k liye research krna parhy ga
@SamamaAli-kq9mr
@SamamaAli-kq9mr 2 күн бұрын
do you still use this method to fetch data from api? i.e. using future builder and snapshot etc?
@thetechbrotherss
@thetechbrotherss Күн бұрын
Nop, this is for basic understanding of concepts. i use state management. Check my mvvm courses for bloc, getx and provider
@imaad-w1j
@imaad-w1j 2 күн бұрын
uff uff 💦💦😩😩😩😈😈
@thetechbrotherss
@thetechbrotherss Күн бұрын
heheheh
@dayanshah2170
@dayanshah2170 2 күн бұрын
// var data type void main() { var distance = 500; var time = 6; var model = 'Hyundai ix25'; var speed; speed = distance / time; print('The car covered total distance $distance km in $time hours at a speed of $speed m/s'); print('The model of car was $model'); }
@thetechbrotherss
@thetechbrotherss Күн бұрын
great
@salmi_khan
@salmi_khan 3 күн бұрын
thank you morethan 5000000000000000000000
@thetechbrotherss
@thetechbrotherss 2 күн бұрын
thanks
@CoderUmar-hw6ef
@CoderUmar-hw6ef 3 күн бұрын
Appreciate your Sophistication of HardWork for Public 😍
@thetechbrotherss
@thetechbrotherss 2 күн бұрын
Thank you so much 😀
@miis_take155
@miis_take155 3 күн бұрын
sir i following you last 2 years and i learn from you. now i teach flutter to my old college student ...there is 30+ student and i suggested your channel to them. they all are also following you to learn flutter. Thank you
@thetechbrotherss
@thetechbrotherss 2 күн бұрын
Glad to hear this
@dayanshah2170
@dayanshah2170 3 күн бұрын
void main() { double temp1 = 15.5; double temp2 = 19.7; bool maxTemp, mintemp; maxTemp = temp1 > 25; print('$temp1 temperature is a summer season $maxTemp'); mintemp = temp2 < 20; print('$temp2 temperature is a winter season $mintemp '); }
@thetechbrotherss
@thetechbrotherss 2 күн бұрын
Great
@Anonymous_1525
@Anonymous_1525 3 күн бұрын
muje ek confusion hoti hai ab in ko UI pr kese manage kryn?
@thetechbrotherss
@thetechbrotherss 2 күн бұрын
look what UI is expecting from you
@mubasharbasharat2876
@mubasharbasharat2876 3 күн бұрын
Greatest teacher❤️
@thetechbrotherss
@thetechbrotherss 2 күн бұрын
Thanks
@Moment95817
@Moment95817 3 күн бұрын
Asif bhaiya ek azib sa doubt hai, aapne jo Loginapi ke ander code likha lagbhag same code jab ham firebase se implement karte hai toh tab bhi likhte hai,phir api sikhne kya fayda Aur Api real Life kaha aur kaise use hota hai
@thetechbrotherss
@thetechbrotherss Күн бұрын
Ap concept seekho, firebase ka funciton bhi api he hota ha
@Moment95817
@Moment95817 Күн бұрын
@@thetechbrotherss ok bhaiya wahi confusion hua tha Apka Linkedln Id???
@syedrockx9816
@syedrockx9816 4 күн бұрын
I cant find pubspec.yaml??????
@PureMotiva-rt2dn
@PureMotiva-rt2dn 4 күн бұрын
Bhai mera wala android ke satha connect ni horaha baaqiyo ke sath horaha hy
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
mtlb ?
@PureMotiva-rt2dn
@PureMotiva-rt2dn 3 күн бұрын
Ye error hy bro
@Rahman50084
@Rahman50084 4 күн бұрын
sir real time ma list ma koye change na ho to wo bloc ma kasa add kara ga jasa getx ma controller ma simple add kar data ha
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
simple ha list declare kro r add kr do
@waseem-abbas786
@waseem-abbas786 4 күн бұрын
Wow sir kamal😂
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
hahhaha
@abdulrafay0540
@abdulrafay0540 4 күн бұрын
Sir Please Banaye
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
ok
@abdulrafay0540
@abdulrafay0540 4 күн бұрын
@@thetechbrotherss Thanks
@abdulrafay0540
@abdulrafay0540 4 күн бұрын
Thanks Sir🥰😃😃
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
thanks
@azizrajpoot999
@azizrajpoot999 4 күн бұрын
Sir shrink wrap kay baad sy list ik baar scroll down tu hu jaati hy lakin udr freee hu jatti hy??
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
Iksa bht easy fix ha i want you to do it your self
@iShahzainAhmed
@iShahzainAhmed 4 күн бұрын
Wonderfully explained everything about CI/CD and GitHub Actions!! Thanks a lot!
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
Glad it was helpful!
@shakibgaming9687
@shakibgaming9687 4 күн бұрын
very helpful video 🌹
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
Glad it was helpful!
@Like_the_way
@Like_the_way 5 күн бұрын
Bhai dsa krva do with dart please
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
acha
@amitkushwah22
@amitkushwah22 5 күн бұрын
Hello Sir can you please create a video to add action button in push notification
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
ok
@ahmedbaig8543
@ahmedbaig8543 5 күн бұрын
Really Love your teaching Style ❤❤
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
Happy to hear that!
@UzairKhan-no9rh
@UzairKhan-no9rh 5 күн бұрын
sir same to same ap ki video follow ki hn Andriod k liya lkn add nhi horaha data
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
share errror
@Dagra_xt
@Dagra_xt 5 күн бұрын
sir ap konsi theme use karta ho android studio ma?
@thetechbrotherss
@thetechbrotherss 4 күн бұрын
abhi latest version with dark theme
@AiDNA-786
@AiDNA-786 5 күн бұрын
Sir i learn your dart course completely.Now i have confusion.I start learning dart oops or flutter.So pleasee clear me what i start.
@thetechbrotherss
@thetechbrotherss 5 күн бұрын
dart oop
@AiDNA-786
@AiDNA-786 4 күн бұрын
@@thetechbrotherss Thank you