New post on /r/flutterdev subreddit:
Flutter Performance Tips — Part 2
https://ift.tt/SUr013T
February 06, 2022 at 02:16PM by iisprey
https://ift.tt/gqnx7Ek
Flutter Performance Tips — Part 2
https://ift.tt/SUr013T
February 06, 2022 at 02:16PM by iisprey
https://ift.tt/gqnx7Ek
Medium
Flutter Performance Tips — Part 2
For bett
New post on /r/flutterdev subreddit:
Will flutter be able to be compiled to JS anytime soon?
I LOVE flutter and dart, really. I was messing up with react and it's insane how you have to work to make a really simple component, specifically with MUI, which is a lib based on material design, as flutter.So I was wondering if we could anytime soon see fluter being compiled to JS. Even thought it has support to web, it's not like a native experience, altought flutter is not a native experience also, it feels greater for the user.Thanks!
February 06, 2022 at 03:49PM by enzodtz
https://ift.tt/Fo0rXSH
Will flutter be able to be compiled to JS anytime soon?
I LOVE flutter and dart, really. I was messing up with react and it's insane how you have to work to make a really simple component, specifically with MUI, which is a lib based on material design, as flutter.So I was wondering if we could anytime soon see fluter being compiled to JS. Even thought it has support to web, it's not like a native experience, altought flutter is not a native experience also, it feels greater for the user.Thanks!
February 06, 2022 at 03:49PM by enzodtz
https://ift.tt/Fo0rXSH
reddit
Will flutter be able to be compiled to JS anytime soon?
I LOVE flutter and dart, really. I was messing up with react and it's insane how you have to work to make a really simple component, specifically...
New post on /r/flutterdev subreddit:
Which navigation package do you prefer for your flutter projects?
Please share your opinion on these packages and why do we need to choose one.View Poll
February 06, 2022 at 04:47PM by _the_airbender_
https://ift.tt/njoAIE1
Which navigation package do you prefer for your flutter projects?
Please share your opinion on these packages and why do we need to choose one.View Poll
February 06, 2022 at 04:47PM by _the_airbender_
https://ift.tt/njoAIE1
New post on /r/flutterdev subreddit:
FlappyBird/ Flutter projects
Remember building a flappybird app once on flutter. What can of other flutter projects look goon on one’s resume?https://github.com/shehriyarmalik/flappybird
February 06, 2022 at 06:18PM by shehriyar_
https://ift.tt/3h4gm0R
FlappyBird/ Flutter projects
Remember building a flappybird app once on flutter. What can of other flutter projects look goon on one’s resume?https://github.com/shehriyarmalik/flappybird
February 06, 2022 at 06:18PM by shehriyar_
https://ift.tt/3h4gm0R
GitHub
GitHub - shehriyarmalik/flappybird
Contribute to shehriyarmalik/flappybird development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
[Ask] Animation in flutter.
Is there any way to create this kind of smoke-y effect or animation in Flutter?dribble
February 06, 2022 at 10:13PM by raman4183
https://ift.tt/muvyJ5M
[Ask] Animation in flutter.
Is there any way to create this kind of smoke-y effect or animation in Flutter?dribble
February 06, 2022 at 10:13PM by raman4183
https://ift.tt/muvyJ5M
Dribbble
Weather App
Weather App designed by Dmitry Lauretsky for Ronas IT | UI/UX Team. Connect with them on Dribbble; the global community for designers and creative professionals.
New post on /r/flutterdev subreddit:
Direct3D on Flutter Desktop
The Flutter Desktop stable release caught my eyes. I was just curious whether it is possible to use Direct3D11/Direct3D12 APIs inside Windows. And how would DXGI bridge in this case?
February 06, 2022 at 09:47PM by Borno11050
https://ift.tt/l5XuNCj
Direct3D on Flutter Desktop
The Flutter Desktop stable release caught my eyes. I was just curious whether it is possible to use Direct3D11/Direct3D12 APIs inside Windows. And how would DXGI bridge in this case?
February 06, 2022 at 09:47PM by Borno11050
https://ift.tt/l5XuNCj
reddit
r/FlutterDev - Direct3D on Flutter Desktop
8 votes and 6 comments so far on Reddit
New post on /r/flutterdev subreddit:
What version of Dart are you running
If you are running pre 2.12 or pre 1.x tell us why.View Poll
February 06, 2022 at 09:20PM by bsutto
https://ift.tt/dXpZAfu
What version of Dart are you running
If you are running pre 2.12 or pre 1.x tell us why.View Poll
February 06, 2022 at 09:20PM by bsutto
https://ift.tt/dXpZAfu
New post on /r/flutterdev subreddit:
Firebase x Flutter: Cloud Messaging
https://ift.tt/BYwRlhs
February 07, 2022 at 06:09AM by Red_Star25
https://ift.tt/sARLOMN
Firebase x Flutter: Cloud Messaging
https://ift.tt/BYwRlhs
February 07, 2022 at 06:09AM by Red_Star25
https://ift.tt/sARLOMN
Dhruv Nakum
Firebase x Flutter: Cloud Messaging
How to push notification in Flutter using Firebase Cloud Messaging (FCM)?
New post on /r/flutterdev subreddit:
Email login into firebase - do we really need two screens?
If you look at any typical example of designing a login service, they tend to have two screen, Sign up and Register, both screen containing two fields email and password.The question I keep asking myself is why the need for two screens? Instead Just have one screen and let the code decide if it is signup or register:var methods = await FirebaseAuth.instance.fetchSignInMethodsForEmail(email);if (methods.contains('password')) {FirebaseAuth.instance.signInWithEmailAndPassword( email: email, password: password );} else {FirebaseAuth.instance.createUserWithEmailAndPassword(email: email, password: password);}}This is method they used in https://firebase.google.com/codelabs/firebase-get-to-know-flutter#4
February 07, 2022 at 09:32AM by Alex54J
https://ift.tt/YoAkVEy
Email login into firebase - do we really need two screens?
If you look at any typical example of designing a login service, they tend to have two screen, Sign up and Register, both screen containing two fields email and password.The question I keep asking myself is why the need for two screens? Instead Just have one screen and let the code decide if it is signup or register:var methods = await FirebaseAuth.instance.fetchSignInMethodsForEmail(email);if (methods.contains('password')) {FirebaseAuth.instance.signInWithEmailAndPassword( email: email, password: password );} else {FirebaseAuth.instance.createUserWithEmailAndPassword(email: email, password: password);}}This is method they used in https://firebase.google.com/codelabs/firebase-get-to-know-flutter#4
February 07, 2022 at 09:32AM by Alex54J
https://ift.tt/YoAkVEy
Firebase
Get to know Firebase for Flutter
Learn how to build a Flutter mobile app with Firebase.
New post on /r/flutterdev subreddit:
Flutter : Setup Firebase In App Messaging
https://youtube.com/watch?v=UyW5uJmui9w&feature=share
February 07, 2022 at 11:18AM by Destiny-Ed
https://ift.tt/6OTPc1X
Flutter : Setup Firebase In App Messaging
https://youtube.com/watch?v=UyW5uJmui9w&feature=share
February 07, 2022 at 11:18AM by Destiny-Ed
https://ift.tt/6OTPc1X
YouTube
Flutter : Setup Firebase In App Messaging
Hello creatives, Today we will learn how to send firebase in-app-messaging from firebase console to your flutter application
Github Repo : https://github.com/Destiny-Ed/Flutter-Notification
Previous video : https://www.youtube.com/watch?v=yEqb3EjDolI
Visit…
Github Repo : https://github.com/Destiny-Ed/Flutter-Notification
Previous video : https://www.youtube.com/watch?v=yEqb3EjDolI
Visit…
New post on /r/flutterdev subreddit:
Flutter Tap Weekly Newsletter Week 121 - Tutorials, videos, packages, and much more!
https://ift.tt/Xxu80h1
February 07, 2022 at 02:10PM by vensign
https://ift.tt/8vD13xX
Flutter Tap Weekly Newsletter Week 121 - Tutorials, videos, packages, and much more!
https://ift.tt/Xxu80h1
February 07, 2022 at 02:10PM by vensign
https://ift.tt/8vD13xX
Fluttertap
Newsletter Issue 121
Flutter Tap newsletter with the latest of Flutter. Articles, tutorials, videos and much more - Issue 121
New post on /r/flutterdev subreddit:
I'm seeking to recreate this app effect in Flutter, can anyone point me to the right resources to get it done?
https://www.youtube.com/watch?v=oxHm5h5eWDE
February 07, 2022 at 01:25PM by tycooperaow
https://ift.tt/xkgCehw
I'm seeking to recreate this app effect in Flutter, can anyone point me to the right resources to get it done?
https://www.youtube.com/watch?v=oxHm5h5eWDE
February 07, 2022 at 01:25PM by tycooperaow
https://ift.tt/xkgCehw
YouTube
Universe Size Comparison (Universe App by Kurzgesagt)
I did this video using Kurzgesagt's Universe App for iOS. The audio is also the original from the app.
The beginning is a little slow but it gives an idea of the magnitud of our "microverse"...
Hope you enjoy it!
The beginning is a little slow but it gives an idea of the magnitud of our "microverse"...
Hope you enjoy it!
New post on /r/flutterdev subreddit:
[Discussion] What are your opinions on multiple instances of Flutter being hosted in a Native app?
Example: Legacy app that uses native views alongside Flutter views. Legacy app can’t go full Flutter just yet.Are there pros and cons to this?
February 07, 2022 at 04:11PM by _temp_user
https://ift.tt/rOa6Xxe
[Discussion] What are your opinions on multiple instances of Flutter being hosted in a Native app?
Example: Legacy app that uses native views alongside Flutter views. Legacy app can’t go full Flutter just yet.Are there pros and cons to this?
February 07, 2022 at 04:11PM by _temp_user
https://ift.tt/rOa6Xxe
reddit
[Discussion] What are your opinions on multiple instances of...
Example: Legacy app that uses native views alongside Flutter views. Legacy app can’t go full Flutter just yet. Are there pros and cons to this?
New post on /r/flutterdev subreddit:
Flutter Hooks - Say Goodbye To Stateful Widget
https://youtube.com/watch?v=hiqpPKF_fic&feature=share
February 07, 2022 at 04:35PM by JoeExotic9
https://ift.tt/hNVsQUY
Flutter Hooks - Say Goodbye To Stateful Widget
https://youtube.com/watch?v=hiqpPKF_fic&feature=share
February 07, 2022 at 04:35PM by JoeExotic9
https://ift.tt/hNVsQUY
YouTube
Flutter Hooks - Say Goodbye To Stateful Widget
How to get rid of StatefulWidget boilerplate and make your code reusable.
Code:
https://github.com/avalanche-tm/youtube-videos/tree/master/flutter_hooks_practical_examples
Twitter: @Avalanche_tm9
#flutter #hooks #widget
Code:
https://github.com/avalanche-tm/youtube-videos/tree/master/flutter_hooks_practical_examples
Twitter: @Avalanche_tm9
#flutter #hooks #widget
New post on /r/flutterdev subreddit:
Widget that can hold another widget that you can swipe?
Is there a widget that can hold another widget and you can swipe to change the widget that its holding? like a circular progress bar that ca be swiped to show another circular progress bar?I don't want to swipe the whole screen. As there would be other content/widgets above and underneath the swipe widget.
February 07, 2022 at 05:47PM by shadow-_-king
https://ift.tt/TPoHLdy
Widget that can hold another widget that you can swipe?
Is there a widget that can hold another widget and you can swipe to change the widget that its holding? like a circular progress bar that ca be swiped to show another circular progress bar?I don't want to swipe the whole screen. As there would be other content/widgets above and underneath the swipe widget.
February 07, 2022 at 05:47PM by shadow-_-king
https://ift.tt/TPoHLdy
reddit
Widget that can hold another widget that you can swipe?
Is there a widget that can hold another widget and you can swipe to change the widget that its holding? like a circular progress bar that ca be...
New post on /r/flutterdev subreddit:
I made a landing page with flutter web and its really awesome!!!
Check this out here https://cultxapp.com
February 07, 2022 at 07:08PM by orioninventor
https://ift.tt/BDsb2SG
I made a landing page with flutter web and its really awesome!!!
Check this out here https://cultxapp.com
February 07, 2022 at 07:08PM by orioninventor
https://ift.tt/BDsb2SG
reddit
I made a landing page with flutter web and its really awesome!!!
Check this out here https://cultxapp.com
New post on /r/flutterdev subreddit:
Top Flutter / mobile dev 2022 conferences
Hello, as I'm getting more into mobile development and associated frameworks (flutter, react native, ionic, etc), I'd like to check out the 2022 conference scene (virtual or in-person). What are your suggestions for top conferences to get an idea of what's happening in the industry, what companies are doing, and perhaps some workshops delving into the technology?
February 07, 2022 at 08:38PM by lostforwords88
https://ift.tt/GJxj4BZ
Top Flutter / mobile dev 2022 conferences
Hello, as I'm getting more into mobile development and associated frameworks (flutter, react native, ionic, etc), I'd like to check out the 2022 conference scene (virtual or in-person). What are your suggestions for top conferences to get an idea of what's happening in the industry, what companies are doing, and perhaps some workshops delving into the technology?
February 07, 2022 at 08:38PM by lostforwords88
https://ift.tt/GJxj4BZ
reddit
Top Flutter / mobile dev 2022 conferences
Hello, as I'm getting more into mobile development and associated frameworks (flutter, react native, ionic, etc), I'd like to check out the 2022...
New post on /r/flutterdev subreddit:
Whatis the current state of Flutter on iOS
I've asked this on several comments but I only get a few upvotes (or downvotes) but no actual response. I really want to get into Flutter but I remember the jank issue on iOS from a while ago and I haven't seen any update on if that has been solved. I was also told the performance isn't that great on iOS.What are the updates on these points and is now a great time to pick up Flutter? Thank you
February 07, 2022 at 09:24PM by MRainzo
https://ift.tt/7jwyNxh
Whatis the current state of Flutter on iOS
I've asked this on several comments but I only get a few upvotes (or downvotes) but no actual response. I really want to get into Flutter but I remember the jank issue on iOS from a while ago and I haven't seen any update on if that has been solved. I was also told the performance isn't that great on iOS.What are the updates on these points and is now a great time to pick up Flutter? Thank you
February 07, 2022 at 09:24PM by MRainzo
https://ift.tt/7jwyNxh
reddit
Whatis the current state of Flutter on iOS
I've asked this on several comments but I only get a few upvotes (or downvotes) but no actual response. I really want to get into Flutter but I...
New post on /r/flutterdev subreddit:
Can we use "Sign in with Google" from Firebase in Flutter with user missing Google Play Service installed?
Some Android phones don't come with Google Play installed but those users do have Google Account.I used a Firebase Auth plugin in Flutter: https://pub.dev/packages/firebase_authSo basically what I want is that an Android user can click "sign in with google" then a web page pops out, and user can sign in. But that plugin from Google is intensively depended on Google Play service.(not working)Some suggestions?
February 07, 2022 at 11:08PM by JakeTheMaster
https://ift.tt/8BwdUAE
Can we use "Sign in with Google" from Firebase in Flutter with user missing Google Play Service installed?
Some Android phones don't come with Google Play installed but those users do have Google Account.I used a Firebase Auth plugin in Flutter: https://pub.dev/packages/firebase_authSo basically what I want is that an Android user can click "sign in with google" then a web page pops out, and user can sign in. But that plugin from Google is intensively depended on Google Play service.(not working)Some suggestions?
February 07, 2022 at 11:08PM by JakeTheMaster
https://ift.tt/8BwdUAE
Dart packages
firebase_auth | Flutter package
Flutter plugin for Firebase Auth, enabling authentication using passwords, phone numbers and identity providers like Google, Facebook and Twitter.
New post on /r/flutterdev subreddit:
Flutter Mobile Apps How to create Flutter Row Widget
https://youtube.com/watch?v=D8YLcKT0zf4&feature=share
February 08, 2022 at 12:13AM by osppro
https://ift.tt/xNdyzba
Flutter Mobile Apps How to create Flutter Row Widget
https://youtube.com/watch?v=D8YLcKT0zf4&feature=share
February 08, 2022 at 12:13AM by osppro
https://ift.tt/xNdyzba
YouTube
Flutter Mobile Apps How to create Flutter Row Widget
#flutterapps #flutterdevelopers #fluttercourse
Please subscribe to this youtube channe..
Flutter Row widget is used to display its widgets in a horizontal array.
In this tutorial, we will get introduced to Row class, and how to use it to display a Row layout…
Please subscribe to this youtube channe..
Flutter Row widget is used to display its widgets in a horizontal array.
In this tutorial, we will get introduced to Row class, and how to use it to display a Row layout…
New post on /r/flutterdev subreddit:
WiFi plugin specificly for IoT applications
https://ift.tt/poDYgze
February 08, 2022 at 01:38AM by gooseclip
https://ift.tt/zWycsdt
WiFi plugin specificly for IoT applications
https://ift.tt/poDYgze
February 08, 2022 at 01:38AM by gooseclip
https://ift.tt/zWycsdt
Dart packages
flutter_iot_wifi | Flutter Package
Connect to an IoT access point using Android or iOS