Flutter Heroes
25.7K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

Show Notification on lock screen
Hello, I didn't see notification on lock screen but I can see noti when open lock screen. I used firebase messaging and firebase local notification libs. Please help me, Thanks.

March 04, 2019 at 10:23AM by hnin yu wai
https://ift.tt/2XvYtVv
New post on Flutter Dev Google group:

Convert a stateless widget into a method
Hi, Is it possible to convert a stateless widget into a method

March 04, 2019 at 10:41AM by Mounika
https://ift.tt/2GXbK4r
New post on /r/flutterdev subreddit:

Say hi to Flutter Press Weekly, the new weekly digest of Flutter development news and articles!
https://ift.tt/2Uny3Du

March 04, 2019 at 09:49AM by xrigau
https://ift.tt/2TfsuKI
New post on /r/flutterdev subreddit:

Welcome to Ouija Quiz!
Hello, guys! This is my first app made in Flutter.It is a simple hangman style game where the user gets the questions from r/AskOuija and they have to guess what the community said.I know the code doesn't follow the best practices but this is my first app and I am pretty proud of it!Of course, feedback is very much appreciated.Github link:https://github.com/andreicorpo/ouija-quiz-gameThere is also an apk if you want to try it.I'm waiting for your feedback and let me know if you played it and liked it and if you think it is worthy of the play store.Thanks for reading and have fun coding with Flutter!

March 04, 2019 at 11:22AM by Andokorr
https://ift.tt/2TtbJLi
New post on Flutter Dev Google group:

Xamarin vs Flutter vs ASP.Net vs .net core, and 3rd party vendors
This is a suggestion to MS/Google, and all 3rd party vendors. https://ift.tt/2UhMNn3 Xamarin while has a lot of nice features, it just still takes all the heavy load of the OS original UI. Its advances depend on the pace of the OS UI

March 04, 2019 at 01:26PM by in...@appyinnovate.com
https://ift.tt/2C4exVj
New post on /r/flutterdev subreddit:

Flutter panel with partners at Mobile World Congress 2019: What happened?
https://ift.tt/2NGL4W1

March 04, 2019 at 02:02PM by Gigatronbot
https://ift.tt/2TbY2B7
New post on Flutter Dev Google group:

How to use flutter inspector in visual studio code
Hi Guys, How to use flutter inspector in visual studio code. Anyone have a idea? Regards, Pravin Marathe

March 04, 2019 at 05:27PM by PRAVIN MARATHE
https://ift.tt/2UeOSQK
New post on Flutter Dev Google group:

mixins can't be instantiated
Can anybody tell me why i get this error? [image: image.png]

March 04, 2019 at 06:11PM by Kamran Ali
https://ift.tt/2GZAN6T
New post on /r/flutterdev subreddit:

Flutter Material Banner?
Hi Everyone!I am try implement material Banner but cannot find Flutter component.https://material.io/design/components/banners.html#Flutter Banner class is not same.Flutter not have Material Banner?​Thanks!

March 04, 2019 at 05:49PM by Flutter_Dev
https://ift.tt/2ELOcgz
New post on /r/flutterdev subreddit:

In app subscriptions
Hi,Has anyone done in app subscriptions for both android and iOS.I want to have monthly subscription (ideally with a free week/month trial). I'm looking to do this as a hybrid, and this would be a big thing between react native vs flutter.

March 04, 2019 at 04:50PM by DoPeopleEvenLookHere
https://ift.tt/2ELN4JF
New post on Flutter Dev Google group:

Looking for flutter job
Hello Every One, Greeting for Rajkumari P. I am having 1 years of experience in flutter, and almost having 6-years for mobile application including android and IOS. If you are looking for developer or need any assistance on your issues kindly contact with me for more discussion. Regards

March 04, 2019 at 07:07PM by expert...@gmail.com
https://ift.tt/2GWEHNX
New tweet from flutterio:

Do you yearn to profile your Flutter application but don't know where to begin? 🙇‍♀️ In this post, @ChinmayGarde explains how to look under the hood. 💁‍♂️

Read the post here ↓ https://t.co/wxj2ro27MJ— Flutter (@flutterio) March 4, 2019

March 04, 2019 at 07:35PM
http://twitter.com/flutterio/status/1102638814894477312
New post on /r/flutterdev subreddit:

How are you folks solving state on your apps? Just published the second version of `observable_state` that tackles fine-grained control of where the UI should update and with a stream (RxDart) example and a GitHub search example. Feedbacks are welcome.
https://ift.tt/2TxSiRq

March 04, 2019 at 07:56PM by leocavalcantee
https://ift.tt/2HcObUp
New post on Flutter Dev Google group:

Flutter/Dart for Android service [sticky] dev??
Hi, Is it currently possible to program Android services [sticky] with Flutter/Dart ?? If so how? Sample code? resources? Thx bros.

March 05, 2019 at 12:08AM by coolbro
https://ift.tt/2C4BMPb
New post on /r/flutterdev subreddit:

Noob question - looking to hire someone to build web and mobile app using dart
Hi,I have a few questions that I would be grateful if someone could answer.Is it risky to build a new mobile first product on Flutter using the AWS back end solution.If I was to hire a dart developer would they be able to build the web app as well?What sort of hourly rate would I expect to pay for a developer or annual salary?Very generic questions I know but just interested in utilizing dart seeing the demo of Flare and Flutter online.Thanks in advance,​

March 05, 2019 at 12:37AM by VADRX
https://ift.tt/2tMbz3g
New post on Flutter Dev Google group:

webview_flutter target _blank not working
I am using webview_flutter 0.3.3+1, my initialUrl loads fine, It contains various links when clicking on a link it navigates properly but if a link has target set to _BLANK, it doesn't do anything. WebView( initialUrl: 'https://SOME_URL', javascript

March 05, 2019 at 03:35AM by Dshah H
https://ift.tt/2TvwkP9
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:​
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
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