I am brand new developer to flutter and spend 3 days trying to initialise Firebase on my App - This worked and went at a really good pace to follow - Thank You!
I think you're awesome. I'm a complete beginner to flutter. I tried a naive approach using gsheets to store users data... I realised It was absurdly slow. Then I found your video, thank you so much.
Wonderfully clear, I can't understand why it has taken me so long to find your channel, now that I have I can ditch the rest that go too fast or make things too complicated.
Hey! I hope you will be making much more of these, im studying flutter right now, via an outdates source, which is nice..but not the greatest, and your videos are pretty informative. Hope will see much more of them. Big thanks!
Without seeing the code I'd guess something isn't configured correctly with firebase. Will it still work if you just add the WidgetsFlutterBinding line? if so then yeah that's probably it. Let me know how it goes!
at 7:01, a popup shows that the tutorials are not meant to be used as a reference to proper application layout or structure. Will you be hosting a vid or article on some of the recommended layouts and structures? Cheers, I subbed!
@@LearnFlutterwithMe Ya, I was able to do it...But THANK YOU SO MUCH!! I was so stuck with the authentication part and saw so many UA-cam videos but understood only yours...Thank youuuuuuuuuuu!!!!!!!!!!!!
hey your videos are amazing! I appreciate you helping all new flutter users, thanks alot. I'm wondering though about how to save these users to the firestore after authenticating them?
Thank you! Someone else asked how to do login with a username and I think the answer is similar to yours so I'm going to try to do a video on it next week.
bonjour! je suis tes vidéos il y a pratiquement 2 semaines. merci de nous édifier avec. après avoir mis en oeuvre le test de la vidéo voici ce que j'ai obtenu import 'dart:ui' as ui; import 'dart:async'; import 'package:app1expl/main.dart' as entrypoint; import 'package:flutter_web_plugins/flutter_web_plugins.dart'; import 'package:app1expl/generated_plugin_registrant.dart'; typedef _UnaryFunction = dynamic Function(List args); typedef _NullaryFunction = dynamic Function(); Future main() async { registerPlugins(webPluginRegistrar); await ui.webOnlyInitializePlatform(); if (entrypoint.main is _UnaryFunction) { return (entrypoint.main as _UnaryFunction)([]); } return (entrypoint.main as _NullaryFunction)(); } je suis totalement perdu c'est pourquoi je veux ton aide
I am brand new developer to flutter and spend 3 days trying to initialise Firebase on my App - This worked and went at a really good pace to follow - Thank You!
You're welcome! Glad to hear it!
I think you're awesome. I'm a complete beginner to flutter. I tried a naive approach using gsheets to store users data... I realised It was absurdly slow. Then I found your video, thank you so much.
NGL one of the best tutorials ive ever seen. Keep up the good work!!!
Thank you so much!
Wonderfully clear, I can't understand why it has taken me so long to find your channel, now that I have I can ditch the rest that go too fast or make things too complicated.
Thank you!
Thank you so much... i dont know why other people make it so complicated in their tutorials...
This video explains the basic auth process and as a flutter newb I thank you a lot!
You're welcome! I'm glad it helped!
Hey!
I hope you will be making much more of these, im studying flutter right now, via an outdates source, which is nice..but not the greatest, and your videos are pretty informative.
Hope will see much more of them.
Big thanks!
yes I'm going to do a series of firebase auth, next one should be up thursday or friday!
@@LearnFlutterwithMe Great!
Are there any plans on connection to an API? Django for example
@@slavabugz2612 there can be! I'll add it to my list!
Gold, thank you for your time and knowledge.
gem of a channel
MY app stops working when I put the initialize lines in at 9:23. Any idea as to why this happens?
Without seeing the code I'd guess something isn't configured correctly with firebase. Will it still work if you just add the WidgetsFlutterBinding line? if so then yeah that's probably it. Let me know how it goes!
@@LearnFlutterwithMe Thanks for the reply, I forgot about this comment but it’s working now!
@@ablesa95 Yes! Awesome!
Simply the best!!!!
Great! I'm learning flutter too now, i wish there will be more source regarding role based authentication
I'll add it to my to-do list for a future video!
How I add Ios options to connect with Ios apps with firebase in flutter.
Can you help about auth for Windows because i used package which you use but i took same erors
Hi i wanna know how to create an application that people can host there sites
Amazing, keep up the good work
thank you!
Persist! Keep 'em coming!
Sir what is that bundle identifier? I am programming in flutter for android. Is the bundle identifier same thing like application id in android?
Excellent Video thank you for making it so easy to understand
you're welcome glad it worked for you!
At 8.30 where you add the three buttons, a component Tree was displayed. Is that a VSCode extension?
Did you find it?
Thank you very much pal, super helpful especially post null safety
You're welcome! Glad it was helpful!
at 7:01, a popup shows that the tutorials are not meant to be used as a reference to proper application layout or structure. Will you be hosting a vid or article on some of the recommended layouts and structures? Cheers, I subbed!
Yes, hopefully in the near future!
Could you please make a video on how to make a proper app with this login system? Like when we press signup it will take us to a certain page..
Yes I'll make sure the video I do for next week touches on this!
@@LearnFlutterwithMe Thank you so much!
Great explaination sir
Thank you!
Well Explained
Hey! i got an error saying core/no-app and no firebase app has been created.. could you help me out?
nvm it worked.. Thanks a lot man you really saved me!!!
@@siddharthmundra1895 Glad you figured it out!
new subscriber!
Hope you will make more videos on flutter
I plan on continuing! :) Thank you!
If I want to return a HomePage instead of change in appbar, where should I return that?
Hello, check this link out and see if it helps you with what you're wanting to accomplish: flutter.dev/docs/cookbook/navigation/navigation-basics
@@LearnFlutterwithMe Ya, I was able to do it...But THANK YOU SO MUCH!! I was so stuck with the authentication part and saw so many UA-cam videos but understood only yours...Thank youuuuuuuuuuu!!!!!!!!!!!!
@@pratishthas3087 That's great, I'm glad it worked! You're welcome!
Thank you so much!
Thank you
Very Helpful!!!!!!!!!!
hey your videos are amazing! I appreciate you helping all new flutter users, thanks alot. I'm wondering though about how to save these users to the firestore after authenticating them?
Thank you! Someone else asked how to do login with a username and I think the answer is similar to yours so I'm going to try to do a video on it next week.
Wonderful
thank you! thanks for watching!
Thank you so much :)
Thank you!!!!
You're welcome!
thanks a lot
you're welcome!
Can You give Firebase Authentication using Phone number.
yes I'll add it to my list to do soon!
Hey your videos are great, can you make a video on Sign In anonymously 👍
I will add it to the list!
bonjour! je suis tes vidéos il y a pratiquement 2 semaines. merci de nous édifier avec.
après avoir mis en oeuvre le test de la vidéo voici ce que j'ai obtenu
import 'dart:ui' as ui;
import 'dart:async';
import 'package:app1expl/main.dart' as entrypoint;
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
import 'package:app1expl/generated_plugin_registrant.dart';
typedef _UnaryFunction = dynamic Function(List args);
typedef _NullaryFunction = dynamic Function();
Future main() async {
registerPlugins(webPluginRegistrar);
await ui.webOnlyInitializePlatform();
if (entrypoint.main is _UnaryFunction) {
return (entrypoint.main as _UnaryFunction)([]);
}
return (entrypoint.main as _NullaryFunction)();
}
je suis totalement perdu
c'est pourquoi je veux ton aide
await Firebase.initializeApp();
This isn't working for me, can someone kindly assist me ASAP?
Thanks alot