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

Can we make Instant app with flutter now or in the future?
https://flutter.dev/docs/resources/faq#why-did-flutter-choose-to-use-dartHow big is the Flutter engine?In December 2018, we measured the download size of a minimal Flutter app (no Material Components, just a single Center widget, built with flutter build apk), bundled and compressed as a release APK, to be approximately 4.06 MB.​​For this simple app, the core engine is approximately 2.7 MB (compressed), the framework + app code is approximately 820.6 KB (compressed), the LICENSE file is 53.5 KB (compressed), necessary Java code (classes.dex) is 61.8 KB (compressed), and there is approximately 450.4 KB of (compressed) ICU data.​​These numbers were measured using apkanalyzer, which is also built into Android Studio.

July 16, 2019 at 10:05PM by Sungodragon
https://ift.tt/2ln9Z73
New post on /r/flutterdev subreddit:

Flutter Drawers done right
https://ift.tt/2lhMewU

July 16, 2019 at 11:40PM by JideGuru
https://ift.tt/2ljOW4Y
New post on /r/flutterdev subreddit:

Different Development/Production Environments in the context of FirebaseAnalytics and other Flutter plugins
Hello friends,I'm implementing FirebaseAnalytics into my iOS and Android Flutter app at the moment and I've run into some challenges. Naturally, I want to exclude my development analytics events from my production analytics events so that the production events can actually inform business decisions, yet I can still verify that my app is sending events correctly in the development environment. This is a surprisingly hard topic to find information on given lots of people must have this issue. Many solutions depend on creating two separate Firebase projects, one for [Development] and one for [Production]. This approach sounds feasible (I use a similar approach for Google Web Analytics), however for Flutter I'll need to include separate "GoogleService-Info.plist" and "google-services.json" files based on whether I'm running the app in development (either on my emulator or a physical device) vs. being on a production device distributed through the Google or Apple stores. A runtime-based solution isn't quite ideal, as Firebase sends events like "app launch" that get sent very early in the app life-cycle and I'm not convinced I'd be able to intercept these and reliably or easily send them to the appropriate Firebase project. So, in terms of general architecture, how has anyone else tackled the problem of different "includes" in development/production environments in a "Fluttery" way?

July 17, 2019 at 12:55AM by SaladLizard
https://ift.tt/2ln7GRq
New post on /r/flutterdev subreddit:

Created this awesome (before_after) slider last night which makes it easier to display the difference between two images.
https://ift.tt/2LUOlCd

July 17, 2019 at 02:57AM by xsahil03x
https://ift.tt/2GgY1mO
New post on Flutter Dev Google group:

How to create a rectangle area when capturing (camera) in Flutter?
How to create a rectangle area when capturing (camera) in Flutter?

July 17, 2019 at 07:55AM by 北科大-陳珈鋐
https://ift.tt/2GgAxhG
New post on /r/flutterdev subreddit:

Flutter for web app - good or bad fit?
hey guys, I am a complete beginner with Flutter and wanted to ask whether it's good for web apps or only for mobile apps development?

July 17, 2019 at 11:26AM by ronix900
https://ift.tt/2SovSPQ
New post on Flutter Dev Google group:

TextInputType
Hi, is it possible to create a textinputtype with colon? I want to input datetime strings like "19.06.18 14:23" and used TextInputType.numberWithOptions(signed: true, decimal: true), If I test this with my Huawei/Swiftkey everything is fine because it shows up with an extended numerical

July 17, 2019 at 02:30PM by Frank Weißenborn
https://ift.tt/2YYp9yu
New post on /r/flutterdev subreddit:

firedart now supports listening to real-time Firestore changes
https://ift.tt/2YbTzwR

July 17, 2019 at 02:21PM by DrCachapa
https://ift.tt/2Gi2uWr
New post on /r/flutterdev subreddit:

Flutter Hackathon 2019: what it felt like and how was it was
https://ift.tt/2Gg9fYW

July 17, 2019 at 01:51PM by EngineerScientist
https://ift.tt/2XWl2RY
New post on /r/flutterdev subreddit:

Handling errors in plugins
I'm building a plugin for decoding QR codes and right now building the platform code for macOS and I was curious how people choose to handle errors. Do they throw errors, catch it and then pass the error across to Dart, or just pass the error directly back to Dart or something else completely?

July 17, 2019 at 02:49PM by silverAndroid
https://ift.tt/2YZNDr2
New post on /r/flutterdev subreddit:

Building a Signup page with Flutter Web(Hummingbird)
https://ift.tt/2JLgwAZ

July 17, 2019 at 05:46PM by JideGuru
https://ift.tt/2XM5SDZ
New post on /r/flutterdev subreddit:

Thoughts on the the 2019 Udemy course from Maximilian Schwarzmüller
I just noticed that Maximilian Schwarzmüller updated his course.Has anyone gone through it yet?​Does anyone have any other new learning material that would be nice to share with the community?

July 17, 2019 at 07:01PM by glancer000
https://ift.tt/2xTs7Ze
New tweet from FlutterDev:

🌟Ta-Da! A database!

A multiplexed episode of the #BoringShow! @bouncingsheep and @redbrogdon add a database to the Hacker News app! They integrate moor, a reactive persistence library, to store article data and make queries.

Watch here → https://t.co/ImuLQYX01W pic.twitter.com/84MP2d93JF— Flutter (@FlutterDev) July 17, 2019

July 17, 2019 at 07:51PM
http://twitter.com/FlutterDev/status/1151550085517455365
New tweet from FlutterDev:

🌟Ta-Da! A database!

A multiplexed episode of the #BoringShow! @bouncingsheep and @redbrogdon add a database to the Hacker News app! They integrate moor, a reactive persistence library, to store article data and make queries.

Watch here → https://t.co/XBWyejLy4g pic.twitter.com/2Zpnl16V1p— Flutter (@FlutterDev) July 17, 2019

July 17, 2019 at 08:25PM
http://twitter.com/FlutterDev/status/1151558583429021699
New post on /r/flutterdev subreddit:

How to separate actions from Page in BLoC architecture?
Hi, recently i came across problem where my Page classes were growing quite big, because they contained widget building methods and also action methods (for example onPageChosen(int position)), i was making some methods to convert data from input (position) to bloc events and send them to bloc itself. But reading such class is very difficult and it doesnt seem to be clear at all. Should i make this "converting" methods in BLoC? Or create separate class which will convert input into events and send it to BLoC?

July 17, 2019 at 07:45PM by kubenqpl
https://ift.tt/2NYPqM0