Best video ever seen on UA-cam. Can u make some tutorial with Splah Screen, Home as Dashboard (with grid view menu), Sidenav with access all pages also url loading, Loging with Firebase and show profile in drawer inside a complete Flutter app. Thanks a lot bro.
Navigation Drawer is one of the most useful feature in realtime applications. When we develop navigation drawer in android we replace the current layout with the fragment. Can you please make video on it and explain how we can do it in flutter applications as well.
Thanks for your awesome tutorial. I need to show active page in my drawer and also if i click the active page in drawer, then it shouldn't push the page in navigation stack.
Very nice.. thanks for taking time and make this beautiful video...
5 років тому+1
Question, I'm trying to set the email photo and name with the info I get from firebaseapi the problem is, build() doesn't rerun after the login which means it won't use the data when available, how can I fix this?
You can use Navigator.of(context).popAndPushNamed(routeName); instead of 2 lines Navigator.of(context).pop(); Navigator.of(context).pushNamed(routeName); or use cascade operator of Dart Navigator.of(context)..pop()..pushNamed(routeName);
This is good but the drawer children shouldn't be pushed to a new screen. They should be opened like fragments like how we have in the Gmail or inbox app ... Would you mind showing an example with fragments please
Excellent tutorial 😍 i need some additional information. I created multiple ListTiles and created a navigator for every ListTile and everything works fine. But when i switch between ListTiles, they're stacking on top of each other. That's not a problem until i hit back button on my phone. How can i close the app when i press the back button instead of taking to previous screens ?
Hi, thanks for this great tutorial!! I have a doubt concerning the CircleAvatar. In a real world app there would be an option for adding another account, just like in e-mail apps. How could I achieve that? In your example you have used a declarative approach, but my doubt is how to implement it in code.
How can I use the drawer menu without AppBar. I don't know use Appbar in screen, I want to custom some raisebutton in the top screen and call the menu Appear by action onPress. Pleased help me !
Amazing channel, looking forward to learn mobile app creation, I know a lot of phyton because those are my first courses at University, and in two weeks I am going to have vacation so I wanted to learn mobile app development, I am inclined to learn flutter is it recommended? For someone new to the mobile app creation?
sir i want to know how should the current username email and picture will be changes according to the users login?? for example a user xyz logins the acc it will show xyz there
Hi, Its very useful video. I am new in flutter so i want to know that how to create single drawrr for all screen.like in native we create drawer on main activity n then change the main screen(fragment). N is there any way to create a screen n change the part of screen on run time.
Hi, great videos! I have an issue though, please help. For some reason I am getting an error that there is a required argument when a create a new Drawer and for some reason I cannot access the backgroundColor property in the userAccountsDrawerHeader.
Well flutter is good for programming but for more grip and efficiency we should use c that's why apple apps have for more grip and control over the app all in all I hope flutter also have that
aa apka emulator direct run kese hota he, means aap jabhi koi code me change karate ho wo directly apke emulator me dikha deta he ki apka gui ase dikhega wo kese hota he
On 19:21 , the close listTile is not working, anyone else has a problem similar? ListTile( title: Text("Close"), trailing: Icon(Icons.close), onTap: () => Navigator.of(context).pop(), ), Same code but still not working Ok guys solved the problem, if anyone faces the issue try returning just Scaffold in stateful widget.
I guess it is the feature of the vscode plugin which executes 'r' command for hot reload whenever we save a file and i have enabled auto save after delay of 100ms.
Hello If possible, how can I display the user's information "name, email, and photo" inside DrawerHeader automatically after the subscriber completes the registration Note that the subscription was via googel and the firebase, and the subscription was completed, and the subscriber's information appeared in the Authentication And thanks in advance
I guess it is the feature of the vscode plugin which executes 'r' command for hot reload whenever we save a file and i have enabled auto save after delay of 100ms.
Very nice tutorial. .thank you. .can you help me how to play youtube video in flutter aplication (how to plugin youtube video player. In flutter aplication ) thank you
Hey man, You are a Great and Your tutorials are amazing. But Can you help me a little? How can I use my sign in Page to directly update the app drawer details? Problems i am facing right now is that. I have a sign in function and 2 classes. 1 that displays app drawer and 1 for login page which calls signinFunction. Now I am not able to get where to place that sign in function. if i make that global then it was unable to use setState function. if i put that in appDrawer class. i am unable to call my signin function from another class Please Help
Ok so a very big thanks to you mtechviral, this helped a lot. Commentry: Everything worked perfectly but there were a few small fixes. The language improved in small ways but all the functions were basically the same.
Old Hai Par Gold hai . Content. Great Content .
Nice video.
Advice for other viewers: watch it at 1.5 speed.
Somehow after 1.5x speed, his slang gets better... :)
agree! I always 1.5x any vdo above 7min lol
Hey!!! Thank you so much for all your videos. Your videos are really adding value in my knowledge :) :)
Best video ever seen on UA-cam. Can u make some tutorial with Splah Screen, Home as Dashboard (with grid view menu), Sidenav with access all pages also url loading, Loging with Firebase and show profile in drawer inside a complete Flutter app. Thanks a lot bro.
Excellent Tutorial! Congratulations! Thanks to share your knowledge about Drawer with us! More vídeos about flutter please!
You explained everything well. You are a king dude. Do not stop!
Navigation Drawer is one of the most useful feature in realtime applications.
When we develop navigation drawer in android we replace the current layout with the fragment.
Can you please make video on it and explain how we can do it in flutter applications as well.
You're the best.
have learned a lot. Thank you.
Bro your good teacher
Thank you...Went through your video line by line and coding and learnt a lot!
Thanks a lot for the amazing tutorial.. Could you please also add a separate tutorial on changing transition animations.
Thanks in advance
I will
That is amazing tutorial for me. Thanks a lot brother. I'm hopping a new videos. Can you made a tutorial that saving image from assets to gallery.😍😊
thanks and please , would be possible upload to github
Old but excellent content!!
But bro, you might want to tap that keys a bit softer :)
Thanks for all your videos, We hope to see more videos coming further.
Excellent tutorial! You explain the concepts very clearly, one thing please add source code for all your tutories! Thank you
thanks and i will..
Learned a lot, thanks
Nice video, you explained very well, keep doing same.
Thanks for your awesome tutorial. I need to show active page in my drawer and also if i click the active page in drawer, then it shouldn't push the page in navigation stack.
Nice more easy than android studio
Nice video,Yes please do a video on that custom Transitions
sure thing
Great tutorial! And you make usage of the platform variable, very nice!
Nice work. Thanks.
Very nice.. thanks for taking time and make this beautiful video...
Question, I'm trying to set the email photo and name with the info I get from firebaseapi
the problem is, build() doesn't rerun after the login which means it won't use the data when available, how can I fix this?
Its realy nice tutorial. Can you please make one video on the page transition as you mentioned in the video
You can use
Navigator.of(context).popAndPushNamed(routeName);
instead of 2 lines
Navigator.of(context).pop();
Navigator.of(context).pushNamed(routeName);
or use cascade operator of Dart
Navigator.of(context)..pop()..pushNamed(routeName);
Please cover Custom Animations as well! Excellent tutorial!
love you brother ..
I know that it takes time to make a tutorial, so thanks for your videos! - they are very helpful!!
Thanks man for it , bt I wanna ask for a help that can we change the opening transition of this app drawer ?? Plz help me out
Yes
Hi Pawan !!
Bro I am unable to have back icon in my Android Emulator although Code Works Good but back navigation arrow doesn't Appear
This is good but the drawer children shouldn't be pushed to a new screen. They should be opened like fragments like how we have in the Gmail or inbox app ... Would you mind showing an example with fragments please
There are no fragments in flutter
Excellent explaination from pk.... In terminal of vscode the flutter commands are not working to me ...what can I do?
Best video on the drawer, thank you so much
can you tell me how I can change the background of the header?
A Perfect Channel and the best tutorial bro, love to get more from you. And Thank You for taking me from zero to one in flutter. ❤️
Thanks 😀
Infact its a start from zero and to be a flutter Hero.
Excellent tutorial 😍 i need some additional information. I created multiple ListTiles and created a navigator for every ListTile and everything works fine. But when i switch between ListTiles, they're stacking on top of each other. That's not a problem until i hit back button on my phone. How can i close the app when i press the back button instead of taking to previous screens ?
Your videos are so helpful! Thank you =)
Can you do a in-app purchase for subscription for both android and ios using the office in-app purchase app from flutter team?
Great One
why new page not opened like in native android in fragment not like completlly new activity ?
Great tutorial. Could you help me with loading a url on one of the screens?
thank you verry much, please give us the project code source
thanks, bro this video helps me a lot!
Yar jordar samjate ho
when you click on menu item, Shouldnt this navigate to inside the page?
Hi sir. Thank you for all these videos can you make video on how to build social media app like facebook or twitter in flutter
sir which simulator you installed in your laptop?
what if i want to show drawer icon/hamburger icon to every page we are making in navigation drawer ??
Thanks for creating this video. Could have been 1000% better and much shorter with some planning and editing.
Hi, thanks for this great tutorial!! I have a doubt concerning the CircleAvatar. In a real world app there would be an option for adding another account, just like in e-mail apps. How could I achieve that? In your example you have used a declarative approach, but my doubt is how to implement it in code.
Dude, You are the best
Thank you for your valuable tutorial. I wonder that what is the name of iphone emulater or simulater?
It is the default simulator from XCode
How can I use the drawer menu without AppBar. I don't know use Appbar in screen, I want to custom some raisebutton in the top screen and call the menu Appear by action onPress. Pleased help me !
Amazing channel, looking forward to learn mobile app creation, I know a lot of phyton because those are my first courses at University, and in two weeks I am going to have vacation so I wanted to learn mobile app development, I am inclined to learn flutter is it recommended? For someone new to the mobile app creation?
sir i want to know how should the current username email and picture will be changes according to the users login?? for example a user xyz logins the acc it will show xyz there
Hi,
Its very useful video.
I am new in flutter so i want to know that how to create single drawrr for all screen.like in native we create drawer on main activity n then change the main screen(fragment).
N is there any way to create a screen n change the part of screen on run time.
Dude, u r a god! Thanks a lot for your work!
What is that little awkward padding above the drawer header? Is that normal?
I love you man !!!! :) :)
Thank 😍
and how to make this Drawer menu without App bar (white color at the Top bar)?? it mean make it to fit the screen.
what is your vs color scheme?
In my drawer navigation have problems
Very good!!!!!
what if I need to call the navigator by sliding at any page?
hi..is it possible to publish ios app from flutter in windows. I am using windows + vscode +flutter ? any help will be appreciated.
No you need Xcode.
Hi, great videos! I have an issue though, please help. For some reason I am getting an error that there is a required argument when a create a new Drawer and for some reason I cannot access the backgroundColor property in the userAccountsDrawerHeader.
I can access the bakrodunColor, ignore that part of the question.
i have a problem regarding 32:57 not working
Well flutter is good for programming but for more grip and efficiency we should use c that's why apple apps have for more grip and control over the app all in all
I hope flutter also have that
aa apka emulator direct run kese hota he, means aap jabhi koi code me change karate ho wo directly apke emulator me dikha deta he ki apka gui ase dikhega wo kese hota he
how to get real time changes in flutter?
On 19:21 , the close listTile is not working, anyone else has a problem similar?
ListTile(
title: Text("Close"),
trailing: Icon(Icons.close),
onTap: () => Navigator.of(context).pop(),
),
Same code but still not working
Ok guys solved the problem, if anyone faces the issue try returning just Scaffold in stateful widget.
thanks, man
Hi I am using IntelliJ, how do I make hot reload work instantly like yours? now I have to save first for it to work.
I guess it is the feature of the vscode plugin which executes 'r' command for hot reload whenever we save a file and i have enabled auto save after delay of 100ms.
Hello
If possible, how can I display the user's information "name, email, and photo" inside DrawerHeader automatically after the subscriber completes the registration
Note that the subscription was via googel and the firebase, and the subscription was completed, and the subscriber's information appeared in the Authentication
And thanks in advance
I'll add to the others who already asked... How is the simulator live updating your code? Is this an Visual Studio thing?
I guess it is the feature of the vscode plugin which executes 'r' command for hot reload whenever we save a file and i have enabled auto save after delay of 100ms.
how to reduce the height of the drawer
Very nice tutorial. .thank you. .can you help me how to play youtube video in flutter aplication (how to plugin youtube video player. In flutter aplication ) thank you
how to get a common drawer for all the pages
Thank You!!!
Hey man,
You are a Great and Your tutorials are amazing.
But Can you help me a little?
How can I use my sign in Page to directly update the app drawer details?
Problems i am facing right now is that.
I have a sign in function and 2 classes. 1 that displays app drawer and 1 for login page which calls signinFunction.
Now I am not able to get where to place that sign in function.
if i make that global then it was unable to use setState function.
if i put that in appDrawer class. i am unable to call my signin function from another class
Please Help
whats the theme? Can anyone please let me know?
how to navigate to another page without history ?
Sir how much app do you have on playstore
good job brother! please can you customize or change de animation in android down-up by left -right at the end of this video??? please come on
Please post this on Github!
Thanks !
Could you please put up the github link
Thanks! :3
From where did you learn to make flutter app ?
I think he has studied the API docs, docs.flutter.io/index.html
can i have its code? i need to do some copy paste
Ok so a very big thanks to you mtechviral, this helped a lot.
Commentry:
Everything worked perfectly but there were a few small fixes. The language improved in small ways but all the functions were basically the same.
Bro how create a toast in the startup of an app?
check my flutter toast plugin video once
great
Am I the only one that gets an error while using the "TargetPlatform"?
use import 'package:flutter/foundation.dart';
How do you add the auto comments at the end of your nested widgets?
Its a dart plugin feature.
Phillip Mwaniki cool, I use Android Studio and I have both the Dart and Flutter Plugins. How do I get it to put in those comments?
As far as i know it is inbuilt in latest version of flutter sdk which is not still available for android studio ..
code for this?
bhi what are you speaking in between ....