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

A collection of memes about Flutter
Just gathering some memes about flutter because why not? :DSome of them I myself use on my talks. Feel free to add yours.​https://github.com/JHBitencourt/flutter_memes

May 23, 2019 at 04:26AM by JHBitencourt
http://bit.ly/2EsZxBo
New post on Flutter Dev Google group:

PDF data Reading
how can we read perticular data from pdf in flutter. Example:- if pdf have first name then fetch first name value in text in flutter

May 23, 2019 at 09:05AM by Jay Gadariya
http://bit.ly/2JA4cWC
New post on Flutter Dev Google group:

How to Disable swipe to open drawer.
I want to disable the swipe gesture to open the drawer, cant find any option or answer regarding this.

May 23, 2019 at 09:21AM by Rajesh Kumar M
http://bit.ly/2wb32rR
New post on /r/flutterdev subreddit:

Is it better approach to use separate 'ChangeNotifierProvider' for each screen?
Flutter Provider package - On page1 I have used 'ChangeNotifierProvider' for 'Page1Model' & on Page2 used 'ChangeNotifierProvider' for 'Page2Model'. But when I am on Page2 screen why provider notifying to both Page1 & Page2. Expectation is it should notify only for Page2 screen. Is it better approach to use separate 'ChangeNotifierProvider' for each screen?

May 23, 2019 at 08:59AM by vaibhav_2018
http://bit.ly/2M3t1w7
New post on /r/flutterdev subreddit:

Scoped model vs Provider?
I just started building a medium sized app using scoped model, and now Flutter endorses provider.From their examples it looks essentially the same thing with different names. Is this actually the case?Are there any pros/cons of one or the other?If all else is equal should I switch over to provider as it's 'the endorsed one'?

May 23, 2019 at 06:48AM by aShortGuy-
http://bit.ly/2JURG34
New post on /r/flutterdev subreddit:

Kevin Moore | It's All Widgets! Flutter Podcast
http://bit.ly/2YGdTpO

May 23, 2019 at 11:15AM by hillel369
http://bit.ly/2M4fnsq
New post on Flutter Dev Google group:

flutter with s3 bucket
I want to upload images to my s3 bucket but unable to find a way to achieve it. How can i upload content on s3 bucket using flutter ?

May 23, 2019 at 12:07PM by Pawan Vijayvergiya
http://bit.ly/2X1n5EX
New post on /r/flutterdev subreddit:

Flutter UI - Car Rental App Design
https://www.youtube.com/watch?v=BIUuGzBFU1Y&t=29s

May 23, 2019 at 02:42PM by Nantesss
http://bit.ly/2VH2cgQ
New post on /r/flutterdev subreddit:

Have anyone try dart.inject? Any success?
Here: https://github.com/google/inject.dartI'm not sure how to source generation work, but I tried both my in my app and the example app, none of them working :(

May 23, 2019 at 02:03PM by raiytu4
http://bit.ly/2WjhZH4
New post on /r/flutterdev subreddit:

We analyzed 60k Flutter builds and profiled the avg Flutter developer. Do you agree?
http://bit.ly/2wbBFxQ

May 23, 2019 at 12:35PM by Gigatronbot
http://bit.ly/2wdv59R
New post on /r/flutterdev subreddit:

Question about type inference and code style
Hi together!I am new to flutter and I have a question about the analyzer & the type inference. In all the examples in the www and also in the flutter documentation or even in the source code of the framework itself, almost 99% of the code have fixed types assigned. Rarely I found modules or code parts where type inference is used. (I found mixed parts in e.g. the flutter cookbook)Lets talk about some precise examples: ``` // Fair enough, I could guess it by recognizing the quotes; still, why type it? String someString = "someValue"// Can build return something else, other than a widget? Widget build(BuildContext context) {// Ok, this is really hard now; the type is even duplicated from the instantiation final TextEditingController controller = TextEditingController(); ```I am using VSC as an editor and the integration works like a charm. I have no doubts about it. I simply want to understand why so many people favor fixed types instead of making use of the inference. Is this a best practice? Do people use it to read the code without possibly open it in an editor?If I understand anything wrong or missed an important concept please do not hesitate to point out my mistakes. Would be great if you give me feedback. Cheers

May 23, 2019 at 03:45PM by lukasbash
http://bit.ly/2JZBlu2
New post on /r/flutterdev subreddit:

Flutter UI, native logic
Hello! So, I've been assigned a project at work that should use Flutter to build UI shared between iOS and Android apps and all the logic should be written in respective native technologies. How complicated is this to accomplish and how would I go about it? Another guy will work on the iOS side and I will be responsible for Android. I would appreciate some examples and any help. I'm thinking we'll have a Flutter module on separate git repository that we'll both call inside our apps to show UI, but I have no idea about Flutter, let alone interop with native code. Thanks in advance!

May 23, 2019 at 04:00PM by marijannovak123
http://bit.ly/2YKFyWO
New post on Flutter Dev Google group:

Dart 1.5.4 Bug Alert: scrambled global vars
I have run into a problem in Dart 1.5.4 that didn't exist in Dart 1.2. Problem, I retrieved info from a server and store that info in some global vars. Inside of initState, this is where I see Dart scrambling my object data. I have spent days tracking this down and, in my mind, there is nothing

May 23, 2019 at 05:52PM by jerry hamby
http://bit.ly/2JZE3jh
New post on /r/flutterdev subreddit:

A plugin for code generation to help you manage Internationalization in one platform
Just write a plugin lang_table to help you manage Internationalization in one platform. Now, support to manage all strings in AirTable and generate json files for Flutter project.Also, use it with gen_lang. It is a dart library for internationalization. Extracts messages to generate dart files required by Intl.Now, Four steps for handling internationalization for Flutter(1) Preparing string files on AirTable
(2) Run lang_table to generate json files
(3) Run gen_lang to generate i18n.dart
(4) Use it in codesEnjoy it.

May 23, 2019 at 07:19PM by ycy101
http://bit.ly/2EsFLWF
New tweet from FlutterDev:

Get the most out of your screen space! Use MediaQuery to get insight into UI needs & build your layout accordingly.

⬆️ ➡️ Access device orientation
💬 User preference settings
🚨 Detailed safe area info

Click here for more #WidgetoftheWeek tips ↓ pic.twitter.com/uKDcu1njAL— Flutter (@FlutterDev) May 23, 2019

May 23, 2019 at 08:46PM
http://twitter.com/FlutterDev/status/1131632503431655424
New post on /r/flutterdev subreddit:

WebM support for Flutter?
Is there any support for the WebM format in Flutter?

May 23, 2019 at 08:48PM by thisw4y
http://bit.ly/2JApeV2