Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

"Wait till it gets out of beta" they said. "Wait till hummingbird is released" , they said....still NO flutter jobs
Seriously WTF. Flutter is GREAT. yet all the job boards have 0-2 jobs over the course of months. Meanwhile reactive jobs are plentifulAre you all just rich or happily employed and Flutter is just a midnight hobby?

June 21, 2019 at 05:48AM by yabadababoo
http://bit.ly/2x6PaiT
New post on Flutter Dev Google group:

Is there any way to launch 'tel' & 'mailto' using flutter_webview_plugin
I'm trying to make 'tel' & 'mailto' to work on my app, It doesn't open up anything which I understand because flutter_webview_plugin doesn't allow any widget on top of it so I tried if(url.contains("tel")||url.contains("tel")){ flutterWebviewPlugin.stopLoading(); flutterWebviewPlugin.stopLo

June 21, 2019 at 11:07AM by Sarthak Solanki
http://bit.ly/2ZCOg9M
New post on /r/flutterdev subreddit:

The real reasons why you should care about Provider : Remi Rousselet giving a detailed run through of Provider
http://bit.ly/2WY7ipo

June 21, 2019 at 11:44AM by EngineerScientist
http://bit.ly/2XqTSGK
New post on /r/flutterdev subreddit:

Do you use Flutter web?
I'm really excited about flutter for web. But after having tried it out it seems as it isn't quite ready for real production apps (at least I don't think so yet). When do you think Flutter for web will be as stable as Flutter for mobile is right now?

June 21, 2019 at 01:45PM by Maltmax
http://bit.ly/2L5xGeJ
New post on /r/flutterdev subreddit:

A simple to use and powerfull styling widget inspired by CSS syntax.
http://bit.ly/2I6bTBR

June 21, 2019 at 01:30PM by ReinBentdal
http://bit.ly/2IugxJW
New post on /r/flutterdev subreddit:

Google Graveyard fear for Flutter?
Given google kills services so often they have a dedicated website, are you worried about flutter going away suddenly one day?

June 21, 2019 at 05:17PM by iamareallperson
http://bit.ly/2ZHHYGb
New post on /r/flutterdev subreddit:

Flutter Web Dependencies
I am developing a website using flutter and I require to store data locally using shared preference. Therefore i added a dependency ishared_preferences: ^0.4.3 in pubspec.yaml file , but its throwing error flutter sdk not found.​Please help me out how can i use depencencies in Flutter Web.

June 21, 2019 at 05:16PM by indrozz
http://bit.ly/2Fp1dwa
New tweet from FlutterDev:

Dart’s DevTools are a suite of web-based debugging and profiling tools you can launch directly from IntelliJ, VS Code, and the command line.

There's real-time memory usage and even a line-by-line debugger!

Check it out here → https://t.co/FPo4jQ9x1v#FlutterFriday pic.twitter.com/mxOsSs8SW2— Flutter (@FlutterDev) June 21, 2019

June 21, 2019 at 06:00PM
http://twitter.com/FlutterDev/status/1142099918187847681
New post on /r/flutterdev subreddit:

Dart’s DevTools are a suite of web-based debugging and profiling tools you can launch directly from IntelliJ, VS Code, and the command line. There's real-time memory usage and even a line-by-line debugger!
http://bit.ly/2N4k9XD

June 21, 2019 at 07:09PM by EngineerScientist
http://bit.ly/2WYczNU
New post on Flutter Dev Google group:

Finished with error: Gradle task assembleDebug failed with exit code 1
I enable authentication by google on my firebase, and replace the file google-service.json by the new file, then I came across this error more information http://bit.ly/2IvT3nL

June 21, 2019 at 08:33PM by El marouv Mohamed
http://bit.ly/2L8lMAM
New post on /r/flutterdev subreddit:

Best way to load and store text assets?
I have a question i wanna throw out there: For me there is two ways to load constant data into an application developed in flutter. One: Store data in a csv or json file in the asset directory and then att application start load and parse the data in a class where it is cached and can later be accessed. Second: Hard code data in a class and access it whenever neccecary.So what method is the best? What are the pros and cons of the different methods?

June 21, 2019 at 09:21PM by redsuperbat
http://bit.ly/2L6GmkZ
New post on /r/flutterdev subreddit:

Is Firebase too overkill for a habit tracking application?
I’m facing the decision of using sqflite vs Firebase and I’m not sure whether a whole Firebase backend would be overkill for my use case since I don’t need any kind of realtime features or data sharing between my users.

June 21, 2019 at 09:17PM by iamarr0gant
http://bit.ly/2XmEJX9
New post on /r/flutterdev subreddit:

Flutter Adapter Classes
Hi all,I'm fairly new to flutter, but I was wondering if there was a way to make an adapter class for a page. For example, if I had a bunch of similarly laid out pages with different text content.Thanks

June 21, 2019 at 09:51PM by Kibitz117
http://bit.ly/2FjqCHR
New post on Flutter Dev Google group:

Firebase ListView Multiple Collection Filter
Hi guys, How can a ListView item refresh after each async task? I have 2 collections on firebase that needs to be accessed and please, if there's another way please advise since I'm new in Firebase and Flutter. My users have a collection inside called favorites with the userID field (same of

June 22, 2019 at 12:33AM by F' Santos
http://bit.ly/2FmeHJ5
New post on /r/flutterdev subreddit:

Flutter interview gone wrong
Hi guys!Due to the circumstances, I made a throw away account to post this.I recently had a flutter interview. Given I had been working professionally with flutter since a couple months before flutter live, I was feeling pretty confident. I work with a startup in the bay area.It started out fine. He asked basic questions about flutter and I responded with confidence. He asked me why I like flutter and I gushed for a couple minutes.Things went south when he asked me to name a couple of widgets. I mentioned everything in flutter is a widget. Then I mentioned a couple like Text, Row, Column, Expanded. He said that he was expecting me to say stateless or stateful widget. I said oh those too. I can speak about them. But he says that's fine and proceeded to the next question.The biggest issue was when he asked me to write the code to get an image from a phone. I asked him to clarify. And he said write the dart code to get an image from a device.I wasn't sure he knew how flutter is supposed to work. I told him that for example, if you have an app that has a button and if you press that button, you want your cameras flash light to turn on, dart by itself can not do that. The UI for the button would be rendered by Skia using dart code yes, but the command to turn on the flash would be sent through a platform channel to the native side. And then we need to write the code to turn on/off the flash light using kotlin or swift code depending on which device we were targeting the app for.Please refer to this link if you're interested in learning on how to do this yourself: https://link.medium.com/OTt7zgQmIXAnd after explaining, I asked him do you want me to just write code for the method channel to the native code? He repeated the question again. I forfeited after a while because even if I did make the method channel, I haven't worked with the image picker (i believe there is an intent for the android side) so I'd have to either Google that or ask the interviewer that.There was one other issue that left a bad taste in my mouth but it's not as problematic as these two.Was that a valid question to ask for an interview? If not, is there any value in me contacting the recruiter about this issue?I did get the rejection letter a couple days later. But I feel like my skills weren't tested properly.I really really liked the project that the team was recruiting for since it hits close to what I really enjoy working with. My experience was pretty bad BUT I would absolutely love to work on that project.

June 22, 2019 at 03:25AM by kittykittyharrington
http://bit.ly/2IxmqGj