New tweet from FlutterDev:
📺🔥 Our app is on fire! Not really, but @puf joins @Fitzface on #TheBoringShow to talk about Firebase Auth and all the asynchronicity that comes with it! Join us as we work through some of these 🔥 topics! Watch here → https://t.co/qUpeR8aEgr https://t.co/yRuNp3CQkG— Flutter (@FlutterDev) Jan 21, 2022
January 21, 2022 at 07:32PM
https://twitter.com/FlutterDev/status/1484594850917879809
📺🔥 Our app is on fire! Not really, but @puf joins @Fitzface on #TheBoringShow to talk about Firebase Auth and all the asynchronicity that comes with it! Join us as we work through some of these 🔥 topics! Watch here → https://t.co/qUpeR8aEgr https://t.co/yRuNp3CQkG— Flutter (@FlutterDev) Jan 21, 2022
January 21, 2022 at 07:32PM
https://twitter.com/FlutterDev/status/1484594850917879809
YouTube
Firebase Authentication in Flutter (The Boring Flutter Development Show, Ep. 55)
In today’s episode of The Boring Flutter Development Show, Fitz is joined by Firebase Software Engineer Frank van Puffelen. Fitz and Puf will take a look at handling Firebase authentication errors, async/await, and much more!
Chapters:
0:00 - Enter Puf!…
Chapters:
0:00 - Enter Puf!…
New post on /r/flutterdev subreddit:
A Framework for Flutter
https://ift.tt/32kpZMO
January 21, 2022 at 08:00PM by gtfperry
https://ift.tt/3FPaNFd
A Framework for Flutter
https://ift.tt/32kpZMO
January 21, 2022 at 08:00PM by gtfperry
https://ift.tt/3FPaNFd
Medium
A Framework for Flutter
A Custom Framework for Flutter Developers
New post on /r/flutterdev subreddit:
Activity Recognition in Background using Flutter
Hi Everyone,I want to implement activity recognition in background that means if user close the application even then it'll listening the activity recognition states whether it is in IN VEHICLE, STILL or in which state.I already tried activity_recognition_flutter: ^4.2.0 package to implement this -> Everything is working fine except in background it is not working when I close the application.I want to implement it in Android & iOS both and my current focus is Android primarily.Can anyone guide with his/her experience if he/she knows how to do it.
Thank you !
January 21, 2022 at 08:57PM by piyushlimited
https://ift.tt/3qPzZqY
Activity Recognition in Background using Flutter
Hi Everyone,I want to implement activity recognition in background that means if user close the application even then it'll listening the activity recognition states whether it is in IN VEHICLE, STILL or in which state.I already tried activity_recognition_flutter: ^4.2.0 package to implement this -> Everything is working fine except in background it is not working when I close the application.I want to implement it in Android & iOS both and my current focus is Android primarily.Can anyone guide with his/her experience if he/she knows how to do it.
Thank you !
January 21, 2022 at 08:57PM by piyushlimited
https://ift.tt/3qPzZqY
reddit
Activity Recognition in Background using Flutter
Hi Everyone, I want to implement activity recognition in background that means if user close the application even then it'll listening the...
New post on /r/flutterdev subreddit:
fork of system_info released
For users of the system_info package, you may be aware it has been marked as discontinued.Given the criticality of this package (and onepub.dev's usage of it), we have made the decision to fork the project.You can now find a supported version of system_info under the name system_info2.Thanks to onepub.dev management for allowing me the time and resources to manage this.
January 21, 2022 at 09:41PM by bsutto
https://ift.tt/3fJlgY8
fork of system_info released
For users of the system_info package, you may be aware it has been marked as discontinued.Given the criticality of this package (and onepub.dev's usage of it), we have made the decision to fork the project.You can now find a supported version of system_info under the name system_info2.Thanks to onepub.dev management for allowing me the time and resources to manage this.
January 21, 2022 at 09:41PM by bsutto
https://ift.tt/3fJlgY8
onepub.dev
OnePub - the Dart private package repository
OnePub is the first and only private repository designed for Dart and Flutter packages.
New post on /r/flutterdev subreddit:
Flutter Supabase Authentication
Is it possible to stay signed in forever? You can specify how long the "tokens" are valid at the supabase configuration UI.Cant I restore the session after the entered value like max value of one week and my users have to login again after one week?Currently Im calling restore session on startup and using the dart-only lib.
January 21, 2022 at 10:47PM by KaiN_SC
https://ift.tt/3qPQQtK
Flutter Supabase Authentication
Is it possible to stay signed in forever? You can specify how long the "tokens" are valid at the supabase configuration UI.Cant I restore the session after the entered value like max value of one week and my users have to login again after one week?Currently Im calling restore session on startup and using the dart-only lib.
@override Future<AppUser> getCurrentUser() async { var user = _supabaseClientService.get().auth.currentUser; if (user == null) { var session = await _getSession(); var response = await _supabaseClientService.get().auth.recoverSession(session); if (response.error == null) await _saveSession(); user = response.user; } return AppUser( user?.id, user?.email, user?.email, ); }
January 21, 2022 at 10:47PM by KaiN_SC
https://ift.tt/3qPQQtK
reddit
Flutter Supabase Authentication
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Do providers have callbacks? I've been struggling with the best practice for this scenario all day
This is my simple ChangeNotifier:
January 22, 2022 at 01:38AM by natural_language_guy
https://ift.tt/3qS3VTn
Do providers have callbacks? I've been struggling with the best practice for this scenario all day
This is my simple ChangeNotifier:
class Settings extends ChangeNotifier{ void changedSettings(){ notifyListeners(); } }I have this in my build method:
Provider.of<Settings>(context);and the widget rebuilds as expected when I call a function that calls notifyListeners in Settings. However, I only want to run an expensive data reload if the rebuild was because of the Provider, and not because some other Flutter management reason.My ideal solution to this is I can register some sort of callback function when I register the Provider.of in my build method...for example:
Provider.of<Settings>(context).withCallback(this._getData(this.state_settings));Instead, what I am doing now is:
class Settings extends ChangeNotifier{ late int lastChange; Settings(this.lastChange); void changedSettings(){ lastChange = DateTime.now().microsecondsSinceEpoch; notifyListeners(); } } ... int lastChange = Provider.of<Settings>(context).lastChange; if(lastChange != lastSettingsChange){ lastSettingsChange = lastChange; _getDataFuture = getData(); }
January 22, 2022 at 01:38AM by natural_language_guy
https://ift.tt/3qS3VTn
reddit
Do providers have callbacks? I've been struggling with the best...
This is my simple ChangeNotifier: class Settings extends ChangeNotifier{ void changedSettings(){ notifyListeners(); } ...
New post on /r/flutterdev subreddit:
Flutter Mobile Apps Adding Flutter to the Environment Variables and Do...
https://youtube.com/watch?v=T155c9jJQ44&feature=share
January 22, 2022 at 02:27AM by osppro
https://ift.tt/3rEF9Fj
Flutter Mobile Apps Adding Flutter to the Environment Variables and Do...
https://youtube.com/watch?v=T155c9jJQ44&feature=share
January 22, 2022 at 02:27AM by osppro
https://ift.tt/3rEF9Fj
YouTube
Flutter Mobile Apps Adding Flutter to the Environment Variables and Downloading Flutter Tools
Flutter Mobile Apps Adding Flutter to the Environment Variables and Downloading Flutter Tools
Please subscribe to this channel for more flutter apps videos.
Subscribe Now.
Things to Cover.
1). Installing Flutter
2). Adding Flutter to the Environment…
Please subscribe to this channel for more flutter apps videos.
Subscribe Now.
Things to Cover.
1). Installing Flutter
2). Adding Flutter to the Environment…
New post on /r/flutterdev subreddit:
Thoughts on flutter flow
What are your thoughts on flutter flow does it make learning flutter useless by the POV of career. Does it fears u that u spent months learning something and then some guy comes and makes the exact same thing with just a few clicks?
January 22, 2022 at 06:09AM by MemberOfUniverse
https://ift.tt/3FXNrgQ
Thoughts on flutter flow
What are your thoughts on flutter flow does it make learning flutter useless by the POV of career. Does it fears u that u spent months learning something and then some guy comes and makes the exact same thing with just a few clicks?
January 22, 2022 at 06:09AM by MemberOfUniverse
https://ift.tt/3FXNrgQ
reddit
Thoughts on flutter flow
What are your thoughts on flutter flow does it make learning flutter useless by the POV of career. Does it fears u that u spent months learning...
New post on /r/flutterdev subreddit:
Guys, what do you have in your desk setup?
Things you have in your desk setup, including your pc/laptop, keyboard mouse, etc...
January 22, 2022 at 01:36PM by The-Hated_One
https://ift.tt/3qQqLdR
Guys, what do you have in your desk setup?
Things you have in your desk setup, including your pc/laptop, keyboard mouse, etc...
January 22, 2022 at 01:36PM by The-Hated_One
https://ift.tt/3qQqLdR
reddit
Guys, what do you have in your desk setup?
Things you have in your desk setup, including your pc/laptop, keyboard mouse, etc...
New post on /r/flutterdev subreddit:
where can i start to learn flutter?
Hello complete noob here. I'm interested learn flutter and make app. But i don't find any good documentation, video series etc. for complete beginner. any one know good guide for flutter?
January 22, 2022 at 03:12PM by ThenBrain
https://ift.tt/3qRmdEg
where can i start to learn flutter?
Hello complete noob here. I'm interested learn flutter and make app. But i don't find any good documentation, video series etc. for complete beginner. any one know good guide for flutter?
January 22, 2022 at 03:12PM by ThenBrain
https://ift.tt/3qRmdEg
reddit
where can i start to learn flutter?
Hello complete noob here. I'm interested learn flutter and make app. But i don't find any good documentation, video series etc. for complete...
New post on /r/flutterdev subreddit:
Feedback on CollAction - an open source app that connects people to do sustainable challenges
CollAction recently launched the first version of its open source app written in Flutter. Any feedback/help would be very much appreciated! :)
January 22, 2022 at 02:56PM by TogetherWeMakeWaves
https://ift.tt/33VHfsb
Feedback on CollAction - an open source app that connects people to do sustainable challenges
CollAction recently launched the first version of its open source app written in Flutter. Any feedback/help would be very much appreciated! :)
January 22, 2022 at 02:56PM by TogetherWeMakeWaves
https://ift.tt/33VHfsb
CollAction
CollAction | Sustainable choices made easy
Do you want to make the world a better place? Do your actions feel like a drop in the ocean? Join our CrowdActions and see how much impact we can make together.
New post on /r/flutterdev subreddit:
Flutter apps running on gaming consoles?
Some time ago there were some articles showing that Flutter is capable of running on Xbox. Are there any rumors or plans to make it work on Switch and PS as well? What’s the progress on that area of Flutter development? Do you think that hybrid gaming console apps will be something that world will be interested in?
January 22, 2022 at 02:44PM by poq106
https://ift.tt/3qPbBFD
Flutter apps running on gaming consoles?
Some time ago there were some articles showing that Flutter is capable of running on Xbox. Are there any rumors or plans to make it work on Switch and PS as well? What’s the progress on that area of Flutter development? Do you think that hybrid gaming console apps will be something that world will be interested in?
January 22, 2022 at 02:44PM by poq106
https://ift.tt/3qPbBFD
reddit
Flutter apps running on gaming consoles?
Some time ago there were some articles showing that Flutter is capable of running on Xbox. Are there any rumors or plans to make it work on Switch...
New post on /r/flutterdev subreddit:
The right choice - react native or flutter
Hey guysI have been developing a few projects with react in the last half year.
I have an idea for an app development, and I have been struggling to choose the right technology for me to learn in order to develop it.
I'm uncertain what should I choose : react native or flutter?
On one hand I'm already experienced with react and react native is based on react.
On the other hand I have been reading, and alot are claiming that eventually flutter will become the next big thing and native will decline in it's popularity.
January 22, 2022 at 04:01PM by Dangerous-Meaning-97
https://ift.tt/3fNGVOV
The right choice - react native or flutter
Hey guysI have been developing a few projects with react in the last half year.
I have an idea for an app development, and I have been struggling to choose the right technology for me to learn in order to develop it.
I'm uncertain what should I choose : react native or flutter?
On one hand I'm already experienced with react and react native is based on react.
On the other hand I have been reading, and alot are claiming that eventually flutter will become the next big thing and native will decline in it's popularity.
January 22, 2022 at 04:01PM by Dangerous-Meaning-97
https://ift.tt/3fNGVOV
reddit
The right choice - react native or flutter
Hey guys I have been developing a few projects with react in the last half year. I have an idea for an app development, and I have...
New post on /r/flutterdev subreddit:
Floating Sidebar Animation | Flutter UI
https://youtube.com/watch?v=62UDV38i8P4&feature=share
January 22, 2022 at 03:21PM by prateeksharma1712
https://ift.tt/3GMP8yJ
Floating Sidebar Animation | Flutter UI
https://youtube.com/watch?v=62UDV38i8P4&feature=share
January 22, 2022 at 03:21PM by prateeksharma1712
https://ift.tt/3GMP8yJ
YouTube
Floating Sidebar Animation | Flutter UI
#Flutter #FlutterSDK #floatingsidebar
Hey,
Till now on this channel, I have taught you 3 times about a custom navigation drawer for your Flutter app.
1. First, Collapsible Animated Sidebar https://www.youtube.com/watch?v=2SjvhAUR9aw. This sidebar may or…
Hey,
Till now on this channel, I have taught you 3 times about a custom navigation drawer for your Flutter app.
1. First, Collapsible Animated Sidebar https://www.youtube.com/watch?v=2SjvhAUR9aw. This sidebar may or…
New post on /r/flutterdev subreddit:
Published my first package
Hi everyone I just created my first package native_drag_n_drop! So far it only supports iOS and only the drop feature but obviously more is to come. I hope this helps somebody :)
January 22, 2022 at 05:29PM by mriosdeveloper
https://ift.tt/3FTgNwL
Published my first package
Hi everyone I just created my first package native_drag_n_drop! So far it only supports iOS and only the drop feature but obviously more is to come. I hope this helps somebody :)
January 22, 2022 at 05:29PM by mriosdeveloper
https://ift.tt/3FTgNwL
Dart packages
native_drag_n_drop | Flutter Package
A package that allows you to add native drag and drop support into your flutter app.
New post on /r/flutterdev subreddit:
Flutter Mobile Apps - Customizing Flutter Mobile App Codes
https://youtube.com/watch?v=2AL6PUC1bVQ&feature=share
January 22, 2022 at 11:09PM by osppro
https://ift.tt/3Irk3kz
Flutter Mobile Apps - Customizing Flutter Mobile App Codes
https://youtube.com/watch?v=2AL6PUC1bVQ&feature=share
January 22, 2022 at 11:09PM by osppro
https://ift.tt/3Irk3kz
YouTube
Flutter Mobile Apps - Customizing Flutter Mobile App Codes
#osppro #flutter #mobileapps #apps #flutterapps
flutter mobile apps - Customizing Flutter Mobile App Codes
In this Video, am going to show you how to customize your default flutter mobile apps in step by step.
For Flutter More Videos, please subscribe to…
flutter mobile apps - Customizing Flutter Mobile App Codes
In this Video, am going to show you how to customize your default flutter mobile apps in step by step.
For Flutter More Videos, please subscribe to…
New post on /r/flutterdev subreddit:
Flutter Mobile Apps - How to Run Flutter Mobile App
https://youtube.com/watch?v=pCvovzzk9kg&feature=share
January 22, 2022 at 11:53PM by osppro
https://ift.tt/3IqWlVF
Flutter Mobile Apps - How to Run Flutter Mobile App
https://youtube.com/watch?v=pCvovzzk9kg&feature=share
January 22, 2022 at 11:53PM by osppro
https://ift.tt/3IqWlVF
YouTube
Flutter Mobile Apps - How to Run Flutter Mobile App
#flutter #mobile #apps
Flutter Mobile Apps - How to Run Flutter Mobile App
In this video, am going to show you how to run your flutter mobile apps using different devices.
For More Flutter Videos,
Subscribe Here. https://youtube.com/c/osppro
Flutter Mobile Apps - How to Run Flutter Mobile App
In this video, am going to show you how to run your flutter mobile apps using different devices.
For More Flutter Videos,
Subscribe Here. https://youtube.com/c/osppro
New post on /r/flutterdev subreddit:
Dark Mode for Flutter Docs?
This has to be a thing, right? Am I missing something?I'm writing this as I feel a headache coming on from looking through the docs with a white background brighter than a thousand suns.I found this from 2019 but that's it.Am I the only one bothered by this? Are there extensions I can use that don't mess up the code examples?Is there maybe a button somewhere that I just missed that flips the dark mode on? I can't believe it's <current year> and dark mode isn't default everywhere.
January 22, 2022 at 11:44PM by emililililily
https://ift.tt/3IuVdjG
Dark Mode for Flutter Docs?
This has to be a thing, right? Am I missing something?I'm writing this as I feel a headache coming on from looking through the docs with a white background brighter than a thousand suns.I found this from 2019 but that's it.Am I the only one bothered by this? Are there extensions I can use that don't mess up the code examples?Is there maybe a button somewhere that I just missed that flips the dark mode on? I can't believe it's <current year> and dark mode isn't default everywhere.
January 22, 2022 at 11:44PM by emililililily
https://ift.tt/3IuVdjG
GitHub
Dark mode for the Flutter docs · Issue #1885 · dart-lang/dartdoc
The extremely informative docs are at times a bit stressful to refer for a long period of time given the bright white theme it currently has. Here is a feature request to implement the dark mode so...
New post on /r/flutterdev subreddit:
Which text editor / ide do you use for flutter?
IDE and text editor you use for flutter
January 23, 2022 at 03:54AM by The-Hated_One
https://ift.tt/3GUDXEe
Which text editor / ide do you use for flutter?
IDE and text editor you use for flutter
January 23, 2022 at 03:54AM by The-Hated_One
https://ift.tt/3GUDXEe
reddit
Which text editor / ide do you use for flutter?
IDE and text editor you use for flutter
New post on /r/flutterdev subreddit:
Flutter Mobile Apps - How to Add Widgets in Flutter Apps
https://youtube.com/watch?v=KsTvtLItBDQ&feature=share
January 23, 2022 at 06:47AM by osppro
https://ift.tt/3Iva79S
Flutter Mobile Apps - How to Add Widgets in Flutter Apps
https://youtube.com/watch?v=KsTvtLItBDQ&feature=share
January 23, 2022 at 06:47AM by osppro
https://ift.tt/3Iva79S
YouTube
Flutter Mobile Apps - How to Add Widgets in Flutter Apps
#fluttermobileapps #apps #osppro #flutter #apps
Flutter Mobile Apps - How to Add Widgets in Flutter Apps
Subscribe for more Videos. https://youtube.com/c/osppro
In Flutter, almost everything is a widget. In this tutorial, you will learn the concept of the…
Flutter Mobile Apps - How to Add Widgets in Flutter Apps
Subscribe for more Videos. https://youtube.com/c/osppro
In Flutter, almost everything is a widget. In this tutorial, you will learn the concept of the…
New post on /r/flutterdev subreddit:
I'm building a helpful system to get direct feedback from users who download your apps
I'm building a more helpful system to easily get and manage feedbacks directly from users who download your apps. I'm taking a survey to find more ways this solution can be truly helpful. Would you pls help take a look ?https://docs.google.com/forms/d/e/1FAIpQLSeM107R12kZJPrFcKHL7Rem7qldGeY4RPugQepOnn956vs9Cw/viewform
January 23, 2022 at 10:14AM by preshtagon16
https://ift.tt/3qSaQf9
I'm building a helpful system to get direct feedback from users who download your apps
I'm building a more helpful system to easily get and manage feedbacks directly from users who download your apps. I'm taking a survey to find more ways this solution can be truly helpful. Would you pls help take a look ?https://docs.google.com/forms/d/e/1FAIpQLSeM107R12kZJPrFcKHL7Rem7qldGeY4RPugQepOnn956vs9Cw/viewform
January 23, 2022 at 10:14AM by preshtagon16
https://ift.tt/3qSaQf9
Google Docs
User Feedback System
Hi! Thank you for taking out time to do this.
This is a survey for developers who would like to get feedback from users who download their apps.
I'm hoping to create a user friendly product so developers can easily get feedbacks from people that use their…
This is a survey for developers who would like to get feedback from users who download their apps.
I'm hoping to create a user friendly product so developers can easily get feedbacks from people that use their…