Flutter Heroes
25.9K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New tweet from FlutterDev:

🌟https://t.co/zptgwG6iEt gets an upgrade!🌟

Announcing a fresh look-and-feel plus support for the popular Flutter UI toolkit. DartPad is our online editor that runs Dart programs in your browser, and now it runs Flutter apps too.

Learn more here → https://t.co/ufaFRweYfr pic.twitter.com/wPk4zXBKUz— Dart Language (@dart_lang) December 4, 2019

December 05, 2019 at 08:50PM
http://twitter.com/FlutterDev/status/1202676579236605952
New post on Flutter Dev Google group:

VS Code extensions v3.7 - Debugger and editor improvements
Hey all, v3.7 of the VS Code extensions have been published. Release notes below (and online ). Debugger ImprovementsPreview: Web Debugging Note: Flutter’s web support is still in preview and only be available on some channels. See the Flutter site

December 05, 2019 at 09:52PM by Danny Tuppeny
https://ift.tt/2RkfNMx
New post on Flutter Dev Google group:

Flutter IntelliJ Plugin M42 Release
Flutter IntelliJ Plugin M42 Release Debugging Add-to-App Modules Support for adding a Flutter module to an Android app (an add-to-app module) is even better. This version is faster since the framework no longer needs to build the Android AAR bundle. Debugging is supported via flutter attach.

December 05, 2019 at 10:13PM by Steve Messick
https://ift.tt/34W6aaH
New post on /r/flutterdev subreddit:

How can I change the Color of Widget down the tree
I want to build an custom bottom navigation bar without the need of an BottomNavigationBarItem class. What I want to achieve is the same behaviour as Toggle Buttons where they can change the color of Icons and Text widgets no matter how nested they are. Can somebody explain to me how Toggle Buttons work in this specific case? I mean you can specify every child as Widget and it just changes the color of Icons and Text widgets how?​Here is the Toggle Button code from Flutter I read it but just found out that they change the ThemeData but it only affects the text color I thought not the Icon color, am I right?

December 05, 2019 at 10:31PM by Hard_Veur
https://ift.tt/368q9TW
New tweet from FlutterDev:

🌟Another #FlutterinFocus episode! 🌟

Want to make a custom animation that repeats or pauses and resumes? @bouncingsheep explains why AnimatedBuilder or AnimatedWidget are perfect for the job, and when to use them over other widgets.
→ https://t.co/oNQx7gNlwf pic.twitter.com/cHaFNNcKmF— Flutter (@FlutterDev) December 5, 2019

December 05, 2019 at 11:12PM
http://twitter.com/FlutterDev/status/1202712452577812480
New post on /r/flutterdev subreddit:

Add Action Buttons FCM Notification Flutter
Hey, I'm working on a project and i need to show notification with accept and reject action buttons. If anyone has any idea how to implement it please help.

December 05, 2019 at 10:57PM by fallentitan101
https://ift.tt/2PlQuXC
New post on Flutter Dev Google group:

How to set 3:4 Aspect Ratio Flutter camera preview
I am working on Flutter app. I need camera functionality and decided to use Camera Plugin
New post on /r/flutterdev subreddit:

Flutter Recipe App Tutorial | Apps From Scratch
https://youtu.be/l3CIMZSAaIk

December 06, 2019 at 12:11PM by Marcus-Ng
https://ift.tt/34ZtuUU
New post on Flutter Dev Google group:

Criar App no VS Code - ERRO
Estou iniciando aqui na comunidade e recente no flutter. Tenho uma missão de utilizar o json e controller dos inputs. Preciso pelo botão sair da Primeira tela redirecionar para a Segunda tela, salvar e retornar para a primeira mostrando (nome e valor). O formulario da Segunda Tela deve ter

December 06, 2019 at 02:17PM by Israel Lira
https://ift.tt/2qrc9VX
New post on /r/flutterdev subreddit:

No more boilerplate consuming Streams/BLoCs
I feel there's so much unnecessary code in my codebase every time I use a Stream!And I'm not the only one, there's a TON of projects where this happens, too.THE pattern 😩dart StreamBuilder( stream: bloc.stock, builder: (context, AsyncSnapshot<Stock> snapshot) { if (snapshot.hasData) { return Text(snapshot.data.stock.toString()); } else if (snapshot.hasError) { return Text(snapshot.error.toString()); } return Center(child: CircularProgressIndicator()); }, ),What if we could write it like this?DataStreamBuilder( stream: bloc.stock, builder: (context, Stock stock) => Text(stock.local.toString()) ),(And have the famous CircularProgressIndicator included by default).It can be overriden, of course, just like the error loading:DataStreamBuilder<Stock>( stream: bloc.stock, loadingBuilder: (context) => Center(child: Text('Loading posts...')), errorBuilder: (context, error) => PostErrorView(error), builder: (context, Stock stock) => Text(stock.local.toString()) )I opened source DataStreamBuilder:https://pub.dev/packages/flutter_data_stream_builder#-readme-tab-

December 06, 2019 at 01:59PM by frank06_
https://ift.tt/388UqDX
New post on /r/flutterdev subreddit:

Is Flutter ready for production? [CASE STUDY] - lessons we learned building our first Flutter app
https://ift.tt/365V9Uv

December 06, 2019 at 01:58PM by Vi_olet
https://ift.tt/2RqcoM5
New post on /r/flutterdev subreddit:

I've always enjoyed watching those speed code videos, so I made one myself - hope you guys like it. And I'm still learning, so feel free to tell me when I can do something better :)
https://youtu.be/7FdASZ9-Rn8

December 06, 2019 at 03:41PM by levelupdigital
https://ift.tt/2rbtz9G
New post on /r/flutterdev subreddit:

All the widgets from the Flutter widget index in a single image
Flutter widgetsSometimes it's hard to recall the extensive range of widgets that flutter provides, so I've made a easy to use image containing all of the widgets that are currently available.

December 06, 2019 at 05:22PM by madebyayan
https://ift.tt/2sKfW1l
New post on Flutter Dev Google group:

Scrollable AlertDialog widget
I created a design doc for a breaking change proposal to the AlertDialog widget (https://ift.tt/2rYOH2X). Please take a look if you're interested. All feedback is welcome [image: :slight_smile:] tldr; this change would make the AlertDialog widget scrollable by default, and

December 06, 2019 at 08:25PM by Shi Hao Hong
https://ift.tt/368P75j
New post on Flutter Dev Google group:

App VS Code flutter ERROR redirect. For God's sake someone helps me!
I'm starting here in the community and recent in flutter. I have a mission to use json and input controller. I need the button to exit the first screen redirect to the second screen, save and return to the first showing (name and value). The Second Screen form will have fields: name, phone, date

December 06, 2019 at 08:29PM by Israel Lira
https://ift.tt/2PiVmgh
New post on /r/flutterdev subreddit:

Stateless vs Stateful Widget
Hello there Everyone 😊👋 I hope that you guys are doing well.Here's the thing, I asked this before about whats the difference between stateless and stateful widgets and I'm still confused about them.Now, I'm confused how will I know which one to use and which one not? Means I've seen some tutorials where people made there Main class as statless while some used them as stateful.Any help will be appreciated. Thanks 😊☺️

December 06, 2019 at 09:12PM by m_hamzashakeel
https://ift.tt/2Ryq4EG
New post on Flutter Dev Google group:

New Dart DevTools Release 0.1.12
DevTools 0.1.12 Release Notes Dart DevTools - A Suite of Performance Tools for Dart and Flutter General Updates - An alpha version of DevTools written in Flutter is available for testing! To test out DevTools in Flutter, click the “beaker” icon in the upper-right corner

December 06, 2019 at 09:56PM by Dave Shuckerow
https://ift.tt/2sLrKAq
New post on /r/flutterdev subreddit:

AutoRoute is a route generation library, where everything needed for navigation is automatically generated for you.
https://ift.tt/2rcuJli

December 06, 2019 at 09:23PM by Milad_Alakarie
https://ift.tt/38gkzQX
New post on /r/flutterdev subreddit:

Concise HTML writer syntax using extension methods
https://ift.tt/2LvKU3O

December 06, 2019 at 10:28PM by Abion47
https://ift.tt/2LsPvDO