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

AndroidTV and TvOS?
Does Flutter 2.0 offer any kind of additional support for AndroidTv or TvOS?

March 05, 2021 at 08:20PM by shredder2794
https://ift.tt/3kN5Rrz
New post on /r/flutterdev subreddit:

The biggest announcement from Engage that no one is talking about...
Meta-programming sounds like a complete game-changer:
https://youtu.be/zSbsIiluixw?t=2569In theory this could plug virtually every sharp edge of the flutter eco-system:
* immutable data classes would be easily created, no code-gen runner
* objects can be easily serialized, no code-gen runner
* functional widgets can be create, no code-gen runner
* StatefulWidget can be deprecated (compiler can just split the class at compile time if it contains state, I think?)
* Auto-dispose on controls/timers/focus should be fairly easy, pre-empting lots of common bugsThis would truly be Flutter 3, and it would be like the dawning of a new day when working with dart. Flutter would finally have a language that works well with it's performance constraints (cached widgets and a desire for immutable data)

March 05, 2021 at 09:14PM by esDotDev
https://ift.tt/3epYIfN
New tweet from FlutterDev:

We had too much fun at #FlutterEngage, so we launched a "Which Dash are you?" Instagram filter on @GoogleDevs IG. Share with your friends and join the fun!

Check it out → https://t.co/cVbAnVhxxm pic.twitter.com/OXvtVXCqdg— Flutter (@FlutterDev) March 5, 2021

March 05, 2021 at 10:33PM
http://twitter.com/FlutterDev/status/1367951528997187587
New post on Flutter Dev Google group:

Debug without null safety
I am using VS Code and I need to start a debug session but turn sound null safety off to work around some bugs in Flutterfire. I do a plain run from the command line using ``` flutter run --no-sound-null-safety

March 05, 2021 at 11:08PM by John Boudreaux
https://ift.tt/3c35Vzr
New post on /r/flutterdev subreddit:

flutter_platform_checker, shows you which platforms are supported by the plugins used in your Flutter app
https://ift.tt/2NZmapk

March 05, 2021 at 11:14PM by redsolver
https://ift.tt/3bl7iKx
New tweet from FlutterDev:

💻 Porting your Android and iOS apps to Flutter.

In this #FlutterEngage talk, we'll join @FaisalAbid to explore a handful of strategies you and your team can take to make porting your Android and iOS apps easier!

Watch 📺 → https://t.co/YhiuNagQf7 pic.twitter.com/KTBjIpVlx9— Flutter (@FlutterDev) March 5, 2021

March 05, 2021 at 11:59PM
http://twitter.com/FlutterDev/status/1367973175334739973
New post on Flutter Dev Google group:

Unable to run flutter on android emulator via android studio
I have been trying unsuccessfully to run a simple hello world type flutter app on an android emulator. At this point i have updated to the latest android studio(4.1.2) Updated to the latest flutter sdk(2.0.1) Deleted my emulators and created a new one. Made sure that my sdk is the same version

March 06, 2021 at 12:32AM by pradyot dhulipala
https://ift.tt/3rpP7Je
New post on /r/flutterdev subreddit:

Please guys, does anyone know what's new in Flutter 2? Especially in the web?
https://ift.tt/30dq8x4

March 06, 2021 at 12:47AM by flutterdevlop
https://ift.tt/3c4jfUi
New post on /r/flutterdev subreddit:

Hey guys I just did a flutter podcast with Haris! Check it out :)
https://www.youtube.com/watch?v=I5lUksBZprM&ab_channel=MitchKoko

March 06, 2021 at 01:26AM by Heisenlife
https://ift.tt/3uWikxD
New tweet from FlutterDev:

🤩 Code with Andrea: Flutter Animations.

Explore #Flutter's powerful APIs in detail with @biz84 as he builds an interactive, animated page flip widget using AnimationController, AnimationBuilder, gesture detectors, and custom 3D matrix transforms.

📺 → https://t.co/u11ZItiiCj pic.twitter.com/okiXxVvNTo— Flutter (@FlutterDev) March 6, 2021

March 06, 2021 at 03:00AM
http://twitter.com/FlutterDev/status/1368018538187853828
New post on /r/flutterdev subreddit:

Tip: Set any Chromium Browser as dev target in Flutter 2.0
A quick tip for anyone not using Google Chrome but a Chromium-based browser (sorry Firefox & Safari). You can your browser of choice as your target. Simply add this to your shell's environmental variablesMacOS: export CHROME_EXECUTABLE="/Applications/{NAME_OF_BROWSER}.app/Contents/MacOS/{NAME_OF_BROWSER}"Windows: (Can someone reply below? I don't want to give our false info that I cant confirm!)PS: If your browser name has spaces in it, make sure it's properly formated! Sometimes your IDE might mess it up so just use VIM or text pad!P.S 2: I think Firefox support might be coming soon since I believe it uses the same APIs as a puppeteer (correct me if I'm wrong) and Firefox is also now supported by puppeteer so it's not bad to assume they might support it in the future.

March 06, 2021 at 06:42AM by Sethu_Senthil
https://ift.tt/3c5iQkv
New post on Flutter Dev Google group:

Why setState not re-render my child stateful widget
This is my code: var _showGoogleMaps = false; @override void initState() { super.initState(); Future.delayed(Duration(milliseconds: 2000), () => setState(() { _showGoogleMaps = true; } )); } @override Widget build(BuildContext context) { return //example 1

March 06, 2021 at 07:33AM by Bảo Nguyễn Ngọc
https://ift.tt/3bl75XI