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

Building A Simple Bottom AppBar in Flutter
http://bit.ly/2RxFF45

February 01, 2019 at 06:43AM by guptamanas1998
http://bit.ly/2sWW7AR
New post on /r/flutterdev subreddit:

Should I invest on Flutter for the future?
Hello everyone,I have being planning to make mobile app related to my engineering field, like a calculator or a study provider. Java and Kotlin is out of the question since it will take me too long to study them before I can create an app. I have some knowledge with Javascript and python, so I'm good.I decided to look into native mobile programming like iconic, nativescript, Xamrin and reactnative. React native was mostly suggested and I heard the rest of them suck, so I decided to start with it. So as was studying on React so I can prepare for react native, I started reading some posts about the downside of react native with its annoying bugs and other problems which completely demotivated me continue studying it. I wanna build app where I will not suffer from headaches or frustrations. Ain't nobody got time for that.That's when I came across flutter 1.0 and heard how its so stable in both android and iOS compared to react native. However, it is still relatively new and many developers are still studying it. I love the idea of following up and supporting something that has future potential, so I decided why not just start from there and see where I go. I would love to end up building apps to people for income.So I ask you experienced developers or hobbyists, after the release of Flutter 1.0, do you believe it has great potential in the future? Will it reach point where it can rival Kotlin? My only fear is the hype of Flutter may get killed at some point in the future. Like Google dropping support for Flutter and it ends being dead like Coffeescript.Also, what's up with Dart being the worst language of 2018? https://www.techrepublic.com/article/the-5-worst-programming-languages-to-learn-in-2018/

February 01, 2019 at 10:57AM by TragicXHero
http://bit.ly/2GedLI5
New post on /r/flutterdev subreddit:

Flutter Working with — DynamicLinking – Karthik Ponnam – Medium
http://bit.ly/2UzUq8k

February 01, 2019 at 04:56PM by KarthikPonnam
http://bit.ly/2S0dBLN
New tweet from flutterio:

Let your users browse a web page without ever leaving your app!

In this post, @bouncingsheep shows you how to harness the power of WebViews in Flutter.

Learn more 📱 here 👇 https://t.co/on9xt8JIwE— Flutter (@flutterio) February 1, 2019

February 01, 2019 at 06:51PM
http://twitter.com/flutterio/status/1091393626565951490
New post on Flutter Dev Google group:

How Do I Access Native SDKs?
I want to integrate Facebook analytics into the app, but it requires Facebook SDK installed to its native devices iOS/Android. I see that Flutter can access Native Components, but what about Native 3rd-Party SDKs? Is there a good tutorial available?

February 01, 2019 at 07:40PM by TyrantBoy
http://bit.ly/2D0gTUH
New post on /r/flutterdev subreddit:

Animations in flutters with the card view
Is the following kind of animation possible yet with flutter. This seems like a cardview with overlapping images perhaps? Along with the animated transition.Any known articles/videos for this type of animation?https://i.redd.it/tzdbi236c0e21.gif

February 01, 2019 at 08:22PM by slayerlob
http://bit.ly/2GeNz00
New post on Flutter Dev Google group:

How to share image on my Flutter App
Hello, I'm creating an app that as plenty of images from my images folder. I want to add a share button, so that when i clicked on any image, it will share to other app on my phone.

February 01, 2019 at 09:04PM by Salimonu Ayodele
http://bit.ly/2sY7NmV
New post on /r/flutterdev subreddit:

Emacs tools for working with the Flutter SDK
http://bit.ly/2BpI1gb

February 01, 2019 at 09:30PM by Purple_Pizzazz
http://bit.ly/2DPeiyQ
New post on /r/flutterdev subreddit:

#1 Flutter + Dart Tips
I have published #1 Flutter + Dart Tipshttps://link.medium.com/JfOC6W3OTTYou will be getting this article on monthly bases. Stay updated for the Latest #Flutter and #Dart Tips.Check this repository for the same:https://github.com/ibhavikmakwana/FlutterDartTips

February 02, 2019 at 06:54AM by ibhavikmakwana
http://bit.ly/2G3geWF
New post on /r/flutterdev subreddit:

How to set default value to StreamBuilder?
How to set default value to stream builder? suppose in below example I have to set default email Id as ‘abc123@gmail.com’. I tried initialData value but it’s not worked. can you please guide me?Widget emailField(StateMgmtBloc stateMgmtBloc) {    return StreamBuilder(      //initialData: “abc123@gmail.com”,      stream: stateMgmtBloc.emailStream,      builder: (BuildContext context, AsyncSnapshot<dynamic> snapshot) {        return TextField(          onChanged: stateMgmtBloc.updateEmail, //Wire up TextField widget to the email stream and add the email to the stream sink          keyboardType: TextInputType.emailAddress,          decoration: InputDecoration(            hintText: ‘email@xyz.com’,            labelText: ‘Email Address’,            errorText: snapshot .error, //retrieve the error message from the stream and display it          ),        );      },    );  }

February 02, 2019 at 11:21AM by vaibhav_2018
http://bit.ly/2BipuSH
New post on /r/flutterdev subreddit:

"Creating Your First App", a step by step video tutorial for junior devs
Hey guys, I've posted another video. Looking for the community's thoughts and feedback. Next videos influenced by what folks want to learn so please lmk. Cheers, Nick.https://fluttercrashcourse.com/lessons/hello-world-jrdevs​​​​https://i.redd.it/p8k4nukwp6e21.jpg​​​

February 02, 2019 at 05:51PM by seenickcode
http://bit.ly/2D4JmZL
New post on /r/flutterdev subreddit:

Icon for flutter app
Hi, i want to create icon which free or paid website can do great icons.And which tools to generate icon per pixel for ios and Android

February 02, 2019 at 06:22PM by Kotaibaw
http://bit.ly/2GgHEYe
New post on /r/flutterdev subreddit:

What is best approach for global state management using BLoC?
I found that bloc resolves the page/screen components decoupling and is a very good solution. Bu what I didn't find is some good solution for global state management along bloc. I target developing medium+ apps.Inherited Widget&Stateful component (rebuild the entire tree problem... someday)InheritedModel (not rebuilding all descendents)Redux (global store for state)ScopedModel (a bit of trouble connecting multiple model with mixin to have a global state?)Global Bloc instance (not so of a solution)I think redux does a good job with state but comes with a lot of things together.What did you guys used in your apps when used bloc ?

February 02, 2019 at 09:00PM by objectbeam
http://bit.ly/2MQynrq