Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
Reddit: Substantive criticism of Flutter from Jay Freeman (creator of Cydia)
Saw this comment on Hacker News:https://news.ycombinator.com/item?id=18518930I have to say that I agree with it. I think that Flutter is amazing for what it's accomplished to date, but there are still a lot of rough edges, especially on iOS. It seems that they're soon going to announce that 1.0 is ready, I think that might be somewhat premature.

Submitted November 25, 2018 at 02:15AM by RxFORTRAN
via reddit https://ift.tt/2RdSssU
Reddit: Substantive criticism of Flutter from Jay Freeman (creator of Cydia)
Saw this comment on Hacker News:https://news.ycombinator.com/item?id=18518930I have to say that I agree with it. I think that Flutter is amazing for what it's accomplished to date, but there are still a lot of rough edges, especially on iOS. It seems that they're soon going to announce that 1.0 is ready, I think that might be somewhat premature.

Submitted November 25, 2018 at 02:15AM by RxFORTRAN
via reddit https://ift.tt/2RdSssU
Reddit: Substantive criticism of Flutter from Jay Freeman (creator of Cydia)
Saw this comment on Hacker News:https://news.ycombinator.com/item?id=18518930I have to say that I agree with it. I think that Flutter is amazing for what it's accomplished to date, but there are still a lot of rough edges, especially on iOS. It seems that they're soon going to announce that 1.0 is ready, I think that might be somewhat premature.

Submitted November 25, 2018 at 02:15AM by RxFORTRAN
via reddit https://ift.tt/2RdSssU
Reddit: How can someone enjoy programming layouts in Flutter?
I'm a web developer and although I have created a Android app in the past (native with Java) I have no knowledge in hybrid apps. So I went to youtube and found this video https://www.youtube.com/watch?v=bnYJRYFsrSw that talks about the pros and cons of React Native, Flutter, Nativescript, ionic and native apps. After some more googling I decided to give a try on Flutter.The app really loads fast and the hot reload is perfect...and then I thought about creating a login layout structure and I came upon this example https://pastebin.com/8kErZBDJHow can someone enjoy programming like this:
child: new Center( child: new ClipRect( child: new BackdropFilter( filter: new ImageFilter.blur(sigmaX: 10.0, sigmaY: 10.0), child: new Container( child: loginForm, height: 300.0, width: 300.0, decoration: new BoxDecoration( color: Colors.grey.shade200.withOpacity(0.5)), ), ), ), 
This is not easy readable; is badly structured; can easily create mistakes errors with so much commas; etc. This type of code reminds me immediately my beginner developer moments, where I would do something like:
 if () if () if () if () 
I went to check the ionic layout structure just for comparison and it's so easy to understand right away.
 <ion-row> <ion-col> <ion-list inset> <ion-item> <ion-input type="text" placeholder="Email" name="email"></ion-input> </ion-item> <ion-item> <ion-input type="password" placeholder="Password" name="password"></ion-input> </ion-item> </ion-list> </ion-col> </ion-row> 
So how do you handle this? You like it?

Submitted November 25, 2018 at 02:24AM by paidahonestidade
via reddit https://ift.tt/2Aj4tpG
Reddit: FlutterForce — #Week 2 – Medium
https://ift.tt/2AlIkqU

Submitted November 25, 2018 at 09:16AM by flutterist
via reddit https://ift.tt/2THff1V
Reddit: Flutter Weekly #36
https://ift.tt/2P47Hmx

Submitted November 25, 2018 at 02:55PM by Elixane
via reddit https://ift.tt/2zoZTGV
Reddit: Show login screen if not sign in
Hi everyone!I am make app using social login in flutter.I no want show home screen if user not sign in (I want show login screen).I find this article for explain: https://medium.com/flutter-community/simple-recipes-app-made-in-flutter-firebase-and-google-sign-in-14d1535e9a59You think his method good?What you think is most easy method to do?

Submitted November 25, 2018 at 06:05PM by Flutter_Dev
via reddit https://ift.tt/2KwW6f4
Reddit: I need help to play youtube video with flutter_youtube pub( some video cannot play and exit)
[VERBOSE-2:FlutterViewController.mm(462)] Could not launch engine with configuration.​with this error

Submitted November 26, 2018 at 05:17AM by htetwaihlaing
via reddit https://ift.tt/2zrAz2N
GGroup: How can I scroll the parent customScrollView when the child view of ListView scroll to the top.
I want to add CupertinoSliverRefreshControl between SliverPersistentHeader(which container tabbar) and TabBarView in a customScrollView. to achieve this, I using a SliverFillRemaining to wrap the TabBarView. Each TabBarView has a ListView.builder to show the data list. I found that when the

Submitted November 26, 2018 at 08:47AM by Hanggi CUI
via Flutter Dev https://ift.tt/2r7Io9f
Reddit: How to change the font size/style of markdown text in Flutter?
I have been struggling with this for a couple of days. I want to display a few university lessons in a flutter app. I used the Text widget, but it's not sufficiently customizable. If I want to make one single word bold in the entire paragraph, I can't do that. I tried the RichText widget, but that was a pain in the neck, I would have to create a new TextSpan everytime I want to customize a piece of the paragraph somehow.Before you say markdown, I gave that a try too. But I can't change the font size, it's small and not so easy on the eyes. I did check the docs on Github, but there doesn't seem to be enough flexibility, you can't resize or align text.I am left with one option, which is to use an HTML view plugin. I tried importing that, but now it's giving me an error.If you know any tricks on how to customize text, hopefully within flutter, not using HTML/markdown, I would really appreciate it. Any suggestions on how to make my life easier are welcome!

Submitted November 26, 2018 at 02:03PM by Yahiabouda
via reddit https://ift.tt/2QmhIA6
Reddit: Can we not have to configure Dart every time a new project is opened?
https://ift.tt/2PVzlY8

Submitted November 26, 2018 at 06:37PM by gamelaunchplatform
via reddit https://ift.tt/2RePl45
🎉🎉🎉 We now have more than 100 registered #FlutterLive viewing parties! 🎉🎉🎉

This list continues to grow. Find your local party to join other developers in celebrating and discussing @flutterio!

Check out the full updated map here -> https://t.co/6ITA5Nphy7 pic.twitter.com/QlJUh5RrS2— Martin Aguinis (@MartinAguinis) November 23, 2018

November 26, 2018 at 07:30PM
via Twitter https://twitter.com/flutterio
On this episode of Widgets101, @bouncingsheep covers the Key parameter and how it plays a role in Element and Widget Trees. Learn when to use 🔑🗝, which kind to use, where to put them, and much more!

Watch here &rarr; https://t.co/WxhTZst93B pic.twitter.com/Jnk5tWnpJG— Flutter (@flutterio) November 26, 2018

November 26, 2018 at 09:39PM
via Twitter https://twitter.com/flutterio
GGroup: Error when Flutter release
Hi guys please can anybody help me with the error what i have, *[ +53 ms] FAILURE: Build failed with an exception.* *[ +4 ms] * What went wrong:* *[ ] Execution failed for task ':app:packageRelease'.* *[ ] > com.android.ide.common.signing.KeytoolException: Failed to read key

Submitted November 27, 2018 at 03:33AM by Denis Ramdan
via Flutter Dev https://ift.tt/2KArSYD