New post on /r/flutterdev subreddit:
Using Firebase Functions with Firebase Auth
Hi,I was wondering how I might go about calling a cloud function and verifying that it was called by an authenticated user using the cloud_functions and firebase_auth plugins. I have done a bit of research on this online already and it appears I can fetch the user's idToken using firebase_auth and pass it to the cloud function. Then, in the function, I could verify it by doing something like so:
March 05, 2019 at 04:47AM by aifulton
https://ift.tt/2UsrrmY
Using Firebase Functions with Firebase Auth
Hi,I was wondering how I might go about calling a cloud function and verifying that it was called by an authenticated user using the cloud_functions and firebase_auth plugins. I have done a bit of research on this online already and it appears I can fetch the user's idToken using firebase_auth and pass it to the cloud function. Then, in the function, I could verify it by doing something like so:
export const someFunc = functions.https.onCall((data, context) => { const { idToken } = data; return admin.auth().verifyIdToken(idToken).then((decodedToken) => { ... do stuff ... }) }And I could call it in flutter like so:
CloudFunctions.instance.call( functionName: "someFunc", parameters: { "idToken": await currentUser.getIdToken(refresh: true), ... } );Is this currently the best way to securely use cloud functions with firebase authentication in flutter?I was hoping that the cloud_functions would be able to automatically integrate in some way with firebase auth like firestore does.
March 05, 2019 at 04:47AM by aifulton
https://ift.tt/2UsrrmY
reddit
r/FlutterDev - Using Firebase Functions with Firebase Auth
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
FVM - A Flutter Version Management Tool
https://ift.tt/2Ti0PZE
March 05, 2019 at 03:12AM by leokcta
https://ift.tt/2EzSAxJ
FVM - A Flutter Version Management Tool
https://ift.tt/2Ti0PZE
March 05, 2019 at 03:12AM by leokcta
https://ift.tt/2EzSAxJ
GitHub
leoafarias/fvm
Flutter Version Management: A simple CLI to manage Flutter SDK versions. - leoafarias/fvm
New post on /r/flutterdev subreddit:
Flutter Tutorial - Flutter Staggered Grid View
Flutter Tutorial - Flutter Staggered Grid View https://www.youtube.com/watch?v=wDoR302KSU4
March 05, 2019 at 06:32AM by whatsupcoders
https://ift.tt/2C3Xpz5
Flutter Tutorial - Flutter Staggered Grid View
Flutter Tutorial - Flutter Staggered Grid View https://www.youtube.com/watch?v=wDoR302KSU4
March 05, 2019 at 06:32AM by whatsupcoders
https://ift.tt/2C3Xpz5
YouTube
Flutter Tutorial - Flutter Staggered Grid View
Flutter Tutorial - Flutter Staggered Grid View
In this video, you will get a more in-depth understanding of StaggeredTile(count, extent, and fit) use cases.
Also, I have included a Pinterest UI in the demonstration video.
For more details about Flutter…
In this video, you will get a more in-depth understanding of StaggeredTile(count, extent, and fit) use cases.
Also, I have included a Pinterest UI in the demonstration video.
For more details about Flutter…
New post on Flutter Dev Google group:
Boot issue after installing Flutter
Installed flutter yesterday on my Windows 7 tower. I was working on "Enabling VM acceleration" on my machine and restarted my PC to access BIOS. After restarting, the PC now hangs at the motherboard screen. There is the option to launch into BIOS, but it does not work. I never had the chance to
March 05, 2019 at 06:49AM by Raptr
https://ift.tt/2IRXb3Q
Boot issue after installing Flutter
Installed flutter yesterday on my Windows 7 tower. I was working on "Enabling VM acceleration" on my machine and restarted my PC to access BIOS. After restarting, the PC now hangs at the motherboard screen. There is the option to launch into BIOS, but it does not work. I never had the chance to
March 05, 2019 at 06:49AM by Raptr
https://ift.tt/2IRXb3Q
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
How can I join flutterstudygroup.slack.com?
There is a link to a slack workspace in official flutter documentation: https://flutter.dev/community But without invitation I can't join. Does anyone know who I need to contact regarding this? There is this "Contact the workspace administrator for an invitation" hint, which isn't very helpful.
March 05, 2019 at 07:22AM by 1Houser1
https://ift.tt/2EwXoUB
How can I join flutterstudygroup.slack.com?
There is a link to a slack workspace in official flutter documentation: https://flutter.dev/community But without invitation I can't join. Does anyone know who I need to contact regarding this? There is this "Contact the workspace administrator for an invitation" hint, which isn't very helpful.
March 05, 2019 at 07:22AM by 1Houser1
https://ift.tt/2EwXoUB
flutter.dev
Community
Find Flutter community anywhere. Join developers around the world making Flutter even better.
New post on /r/flutterdev subreddit:
Any good tutorials on UI design?
Before Flutter, I had zero mobile/web development experience...Flutter and dart are really awesome, but I'm really bad at ui design, and being a guy that's not sensitive to colors, I always found myself trying to change colors of widget then hot reload to see if ui could look better or color combination could look right. I tried going through Google's website on Material Design but still I'm clueless....
March 05, 2019 at 07:10AM by livinglist
https://ift.tt/2ThEhs1
Any good tutorials on UI design?
Before Flutter, I had zero mobile/web development experience...Flutter and dart are really awesome, but I'm really bad at ui design, and being a guy that's not sensitive to colors, I always found myself trying to change colors of widget then hot reload to see if ui could look better or color combination could look right. I tried going through Google's website on Material Design but still I'm clueless....
March 05, 2019 at 07:10AM by livinglist
https://ift.tt/2ThEhs1
reddit
r/FlutterDev - Any good tutorials on UI design?
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
How to get data from api using json body?
https://ift.tt/2Hgt9Eh
March 05, 2019 at 09:39AM by Bhanuka Isuru
https://ift.tt/2tQIcwI
How to get data from api using json body?
https://ift.tt/2Hgt9Eh
March 05, 2019 at 09:39AM by Bhanuka Isuru
https://ift.tt/2tQIcwI
Stack Overflow
How to Http Post with Json Body on Flutter
I am trying to get data from API. I need to pass value from the body, in postman without a header: application/JSON data is not displayed.
final response = await http.post(
"http://192.168.1...
final response = await http.post(
"http://192.168.1...
New post on Flutter Dev Google group:
How to handle errors in a large app
Architecture wise if i need to delegate error handling to a common component how to do this. The approach i tried for now is as follows: - Used an inherited widget in order to share a screen state (loading, error, displaying_data) - Used a wrapper widget with a stack that shows the current screen
March 05, 2019 at 10:14AM by carolin...@innuva.com
https://ift.tt/2Tj6BtS
How to handle errors in a large app
Architecture wise if i need to delegate error handling to a common component how to do this. The approach i tried for now is as follows: - Used an inherited widget in order to share a screen state (loading, error, displaying_data) - Used a wrapper widget with a stack that shows the current screen
March 05, 2019 at 10:14AM by carolin...@innuva.com
https://ift.tt/2Tj6BtS
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
About the Flutter Doc Copyright
Hello, I am a student majoring in computer engineering in Korea. I am a student at Handong Global University and I would like to produce an online lecture course on developing mobile apps using Flutter and Firebase. I'd like to ask if it's okay to use the following in making PPT or in making
March 05, 2019 at 11:32AM by 달밍문밍
https://ift.tt/2HcTIdC
About the Flutter Doc Copyright
Hello, I am a student majoring in computer engineering in Korea. I am a student at Handong Global University and I would like to produce an online lecture course on developing mobile apps using Flutter and Firebase. I'd like to ask if it's okay to use the following in making PPT or in making
March 05, 2019 at 11:32AM by 달밍문밍
https://ift.tt/2HcTIdC
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Trying to understand the implementation architecture of FlutterDriver ?
I'm co-creator of Selenium 1.0. My bit was Selenium-B in 2004. 'B' was later refactored into Selenium-RC as the dev team expanded to include friends outside ThoughtWorks. Because of the same origin policy, I had the browser JS do COMET to the driving process. It had glass ceilings, of course, and thank Turing that fellow ThoughtWorker Simon Stewart had WebDriver waiting in the wings to do a reverse-takeover of the Selenium project for v2.0. The 1.x team threw the keys at him, when the idea was mooted and sprinted in the opposite directionAnyway, here's the what I understand so far about FlutterDriver - https://screencast.com/t/mpDfdfTlkfc - and it's be great if people can help me complete the representation of process, sockets, directionality of request/response. Indeed the nature or payloads, and anything that completes an understanding of asynchronous aspects would help.
March 05, 2019 at 12:32PM by paul_h
https://ift.tt/2H2zJPq
Trying to understand the implementation architecture of FlutterDriver ?
I'm co-creator of Selenium 1.0. My bit was Selenium-B in 2004. 'B' was later refactored into Selenium-RC as the dev team expanded to include friends outside ThoughtWorks. Because of the same origin policy, I had the browser JS do COMET to the driving process. It had glass ceilings, of course, and thank Turing that fellow ThoughtWorker Simon Stewart had WebDriver waiting in the wings to do a reverse-takeover of the Selenium project for v2.0. The 1.x team threw the keys at him, when the idea was mooted and sprinted in the opposite directionAnyway, here's the what I understand so far about FlutterDriver - https://screencast.com/t/mpDfdfTlkfc - and it's be great if people can help me complete the representation of process, sockets, directionality of request/response. Indeed the nature or payloads, and anything that completes an understanding of asynchronous aspects would help.
March 05, 2019 at 12:32PM by paul_h
https://ift.tt/2H2zJPq
Screencast.com
2019-03-05_1128
Shared from Screencast.com
New post on Flutter Dev Google group:
Signal R Client
Hello everyone, Is there any signal R client plugin that works for flutter? Thanks!!
March 05, 2019 at 01:43PM by Samuel Kingsley
https://ift.tt/2Th2T40
Signal R Client
Hello everyone, Is there any signal R client plugin that works for flutter? Thanks!!
March 05, 2019 at 01:43PM by Samuel Kingsley
https://ift.tt/2Th2T40
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Flutter: Adding Bluetooth Functionality
https://ift.tt/2NJB66j
March 05, 2019 at 04:20PM by Purple_Pizzazz
https://ift.tt/2H34iVa
Flutter: Adding Bluetooth Functionality
https://ift.tt/2NJB66j
March 05, 2019 at 04:20PM by Purple_Pizzazz
https://ift.tt/2H34iVa
Medium
Flutter: Adding Bluetooth Functionality
This article will help you to use Bluetooth functionality with Flutter.
New post on Flutter Dev Google group:
App Behaviour is wrong
Whenever i run my app on a physical device i continuously get the following message in my log. E/ ( 9186): [Mali]: gles_texture_bind_texture: Rendering feedback loop detected (texture=6), app behavior is wrong E/ ( 9186): [Mali]: gles_texture_bind_texture: Rendering feedback loop
March 05, 2019 at 05:46PM by Kamran Ali
https://ift.tt/2UhekoN
App Behaviour is wrong
Whenever i run my app on a physical device i continuously get the following message in my log. E/ ( 9186): [Mali]: gles_texture_bind_texture: Rendering feedback loop detected (texture=6), app behavior is wrong E/ ( 9186): [Mali]: gles_texture_bind_texture: Rendering feedback loop
March 05, 2019 at 05:46PM by Kamran Ali
https://ift.tt/2UhekoN
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Why doesn't "Flutter Channels" cache installed versions to avoid the clone/setup process
Hi Guys,We are currently in the process of rewriting our mobile app using Flutter, and our team has really enjoyed the experience coming from React Native, and Native mobile development.Now because we are heavily dependent on some plugins like video-player and platform views, we find ourselves switching to the latest dev and master version often.We have been using Flutter Channels to do that, but we found some limitations.Multiple local cached versions - Clones the repository and does the setup every single time, so switching between versions to validate something takes a few minutes.Choose specific tag (version) numbers - As we roll out our app in production, we want to continue to build newer versions while easily hot fixing the current version without updating the SDK.Does anyone know why Flutter Channel behaves the way it does? I have been looking through the source code, and it seems that all its doing is a "git clone" and running the setup through "flutter doctor".In the meantime, I have created a little tool that solves the problems described aboveFVM - A Flutter Version Management ToolThe cli uses Flutter tooling to do everything. It just has a mechanism to symlink multiple versions as you install them.Would love to hear from anyone that has a bit more insight on those reasons. Also would like to see Flutter Channels incorporate those features as part of their own tools.P.S. I had created a post with a link to the cli but felt that getting more insight about the currently used version workflows, and giving clarification were a bit more clear.
March 05, 2019 at 05:59PM by leokcta
https://ift.tt/2ISLzxi
Why doesn't "Flutter Channels" cache installed versions to avoid the clone/setup process
Hi Guys,We are currently in the process of rewriting our mobile app using Flutter, and our team has really enjoyed the experience coming from React Native, and Native mobile development.Now because we are heavily dependent on some plugins like video-player and platform views, we find ourselves switching to the latest dev and master version often.We have been using Flutter Channels to do that, but we found some limitations.Multiple local cached versions - Clones the repository and does the setup every single time, so switching between versions to validate something takes a few minutes.Choose specific tag (version) numbers - As we roll out our app in production, we want to continue to build newer versions while easily hot fixing the current version without updating the SDK.Does anyone know why Flutter Channel behaves the way it does? I have been looking through the source code, and it seems that all its doing is a "git clone" and running the setup through "flutter doctor".In the meantime, I have created a little tool that solves the problems described aboveFVM - A Flutter Version Management ToolThe cli uses Flutter tooling to do everything. It just has a mechanism to symlink multiple versions as you install them.Would love to hear from anyone that has a bit more insight on those reasons. Also would like to see Flutter Channels incorporate those features as part of their own tools.P.S. I had created a post with a link to the cli but felt that getting more insight about the currently used version workflows, and giving clarification were a bit more clear.
March 05, 2019 at 05:59PM by leokcta
https://ift.tt/2ISLzxi
GitHub
GitHub - leoafarias/fvm: Flutter Version Management: A simple CLI to manage Flutter SDK versions.
Flutter Version Management: A simple CLI to manage Flutter SDK versions. - leoafarias/fvm
New post on /r/flutterdev subreddit:
Location/Geolocation
Hi,How do you do location/geolocaion in Flutter? I ws trying "Geolocator" plugin (https://pub.dartlang.org/packages/geolocator), but adding it to pubspec breaks compiling (even older versions).... is there any plugin that works out-of the-box?
March 05, 2019 at 07:15PM by moda_foca
https://ift.tt/2XC0UFW
Location/Geolocation
Hi,How do you do location/geolocaion in Flutter? I ws trying "Geolocator" plugin (https://pub.dartlang.org/packages/geolocator), but adding it to pubspec breaks compiling (even older versions).... is there any plugin that works out-of the-box?
March 05, 2019 at 07:15PM by moda_foca
https://ift.tt/2XC0UFW
Dart packages
geolocator | Flutter Package
Geolocation plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API for generic location (GPS etc.) functions.
New post on /r/flutterdev subreddit:
Flutter Dribble Challenge
Hey community I am a beginner in developing so to imporove my work I have started a dribble challenge where anybody can send me dribble link with which will I try to make a similar flutter app . You can challenge me by a) Email id singhbhavneetdeveloper@gmail.com b) Twitter id Bhavneet SinghMy first Challenge - Online Banking AppProcessing gif 8eex9omddck21...
March 05, 2019 at 07:14PM by bhavisingh
https://ift.tt/2SHNBQx
Flutter Dribble Challenge
Hey community I am a beginner in developing so to imporove my work I have started a dribble challenge where anybody can send me dribble link with which will I try to make a similar flutter app . You can challenge me by a) Email id singhbhavneetdeveloper@gmail.com b) Twitter id Bhavneet SinghMy first Challenge - Online Banking AppProcessing gif 8eex9omddck21...
March 05, 2019 at 07:14PM by bhavisingh
https://ift.tt/2SHNBQx
Twitter
Bhavneet Singh (@Bhavnee48368854) | Twitter
The latest Tweets from Bhavneet Singh (@Bhavnee48368854): "Hey community I am a beginner in developing so to improve my work I have started a dribble challenge where anybody can send me dribble link with which will I try to make a similar flutter app . #…
New post on /r/flutterdev subreddit:
Flutter - Firebase ML kit - Reading Barcodes
https://youtu.be/2RcmXJpX3Ys
March 05, 2019 at 06:05PM by rajayogan27
https://ift.tt/2EGoKYm
Flutter - Firebase ML kit - Reading Barcodes
https://youtu.be/2RcmXJpX3Ys
March 05, 2019 at 06:05PM by rajayogan27
https://ift.tt/2EGoKYm
YouTube
Flutter - Firebase ML kit - Reading Barcodes
Support me - https://paypal.me/RajaYogan
Buy my course - https://www.udemy.com/learn-flutter-from-scratch/?couponCode=SPECOFF
Follow me on twitter - https://twitter.com/rajayogan14k
Flutter Animation videos - https://www.youtube.com/playlist?list=PLgGjX33Qsw…
Buy my course - https://www.udemy.com/learn-flutter-from-scratch/?couponCode=SPECOFF
Follow me on twitter - https://twitter.com/rajayogan14k
Flutter Animation videos - https://www.youtube.com/playlist?list=PLgGjX33Qsw…
New post on Flutter Dev Google group:
Flutter Dribbble Challenge
Hey community I am a beginner in developing so to imporove my work I have started a dribbble challenge where anybody can send me dribbble link with which will I try to make a similar flutter app.I am a college student so can only work on this on Saturday and Sunday. You can challenge me by a)
March 05, 2019 at 07:34PM by Bhavneet Singh
https://ift.tt/2tRAylB
Flutter Dribbble Challenge
Hey community I am a beginner in developing so to imporove my work I have started a dribbble challenge where anybody can send me dribbble link with which will I try to make a similar flutter app.I am a college student so can only work on this on Saturday and Sunday. You can challenge me by a)
March 05, 2019 at 07:34PM by Bhavneet Singh
https://ift.tt/2tRAylB
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
Does anyone hav issue like this??
My VS code doesnt show new Dart dev tools, and flutter inspector. Everything is updated!!!!!!
March 05, 2019 at 07:42PM by Riddick 4Ever
https://ift.tt/2GZhj2d
Does anyone hav issue like this??
My VS code doesnt show new Dart dev tools, and flutter inspector. Everything is updated!!!!!!
March 05, 2019 at 07:42PM by Riddick 4Ever
https://ift.tt/2GZhj2d
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
HI. I'M AN EX BIG MAFIA MONEY LAUNDERER: STUART NEWBY FROM MONACO. EX KLEINWORT BENSON LONDON!!!!!!!
HI. I'M AN EX BIG MAFIA MONEY LAUNDERER: STUART NEWBY FROM MONACO. EX KLEINWORT BENSON LONDON. THEN MONTANI MONACO. AS I JUST SAID, I'M AN EX ENORMOUS MAFIA'S MONEY LAUNDERER ( I DID THAT IN LONDON, IN SINGAPORE AND SINCE MAN YEARS, IN COTE D'AZUR, IN MONACO, IN MONTECARLO, THRU MY EXTREMELY
March 05, 2019 at 07:46PM by STUART-NEWBY MONTANI MONACO EX-KLEINWORTBENSON
https://ift.tt/2Tws15X
HI. I'M AN EX BIG MAFIA MONEY LAUNDERER: STUART NEWBY FROM MONACO. EX KLEINWORT BENSON LONDON!!!!!!!
HI. I'M AN EX BIG MAFIA MONEY LAUNDERER: STUART NEWBY FROM MONACO. EX KLEINWORT BENSON LONDON. THEN MONTANI MONACO. AS I JUST SAID, I'M AN EX ENORMOUS MAFIA'S MONEY LAUNDERER ( I DID THAT IN LONDON, IN SINGAPORE AND SINCE MAN YEARS, IN COTE D'AZUR, IN MONACO, IN MONTECARLO, THRU MY EXTREMELY
March 05, 2019 at 07:46PM by STUART-NEWBY MONTANI MONACO EX-KLEINWORTBENSON
https://ift.tt/2Tws15X
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.