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

Flutter Tutorial - Flutter PageView Widget
http://bit.ly/2SxGbjT

December 30, 2018 at 05:22AM by whatsupcoders
http://bit.ly/2AkQwIC
New post on /r/flutterdev subreddit:

FlutterForce — Week 7
http://bit.ly/2BQ9l6i

December 30, 2018 at 11:27AM by flutterist
http://bit.ly/2Am0rO0
New post on Flutter Dev Google group:

Reorder Items in SliverList
Hi Guys, I´m using a *SliverList* with *SliverChildBuilderDelegate* to generate the list items on the fly. Now I´m trying to allow the user to *reorder the list items via drag and drop *over a handle-icon on each item in a row. I´ve tried different things (like Draggable) but I haven´t found

December 30, 2018 at 06:14PM by mic...@wolkenkraft.com
http://bit.ly/2EXk6b1
New post on /r/flutterdev subreddit:

Coding Flutter Apps on your Phone with Flutter, an Experiment
http://bit.ly/2BOFfAp

December 30, 2018 at 08:09PM by norbert515
http://bit.ly/2CFWWUp
New post on /r/flutterdev subreddit:

will flutter compile to fuchsia apps the same way that it compiles to android?
i'm not very knowledgeable on flutter or fuchsia, but i wonder, will flutter be compiled natively to fuchsia?i thought it would compile natively, until i heard that fuchsia added support for apks.will flutter compile natively on fuchsia or will it compile to an apk?

December 30, 2018 at 09:16PM by dan-danny-daniel
http://bit.ly/2VheQUB
New post on /r/flutterdev subreddit:

Neaws - An open-sourced news reader made with Flutter.
Neaws​​ScreenshotI just released an open-sourced news reader made with Flutter. It is called Neaws (very innovative, right?) And you can download it with this link: https://play.google.com/store/apps/details?id=com.leodr.flutternewsapp​The whole thing is open sourced. For code and information on how to compile it yourself visit: https://github.com/leodr/neaws​If you have anything to say, feel free to do so below!

December 30, 2018 at 10:55PM by thisw4y
http://bit.ly/2TjsMvr
New post on /r/flutterdev subreddit:

Rss feed reader flutter sample application
Here is a simple feed reader sample project in flutter: https://play.google.com/store/apps/details?id=com.visd0m.yetanotherrssfeedreaderHere is the GitHub repo: https://github.com/visd0m/yet_another_rss_feed_readerSuggestions and feedback are welcome.[Disclaimer] I am not a skilled flutter/dart developer it is just a simple project with the purpose to take a look at the flutter world.

December 31, 2018 at 01:29AM by visd0m
http://bit.ly/2RpmltF
New post on /r/flutterdev subreddit:

Flutter Tutorial - Flutter ExpansionTile
http://bit.ly/2ViNRs0

December 31, 2018 at 01:16AM by whatsupcoders
http://bit.ly/2GLy5mb
New post on /r/flutterdev subreddit:

Use custom DNS server for HTTP requests?
http://bit.ly/2SoDCAp

December 31, 2018 at 03:58AM by superl2
http://bit.ly/2EXhhpS
New post on /r/flutterdev subreddit:

What is not possible (or not a good user experience) in Flutter so far?
Things like ApplePay, etc?

December 31, 2018 at 04:54AM by nothing_to_feel_here
http://bit.ly/2EYlv09
New post on /r/flutterdev subreddit:

Bottom Tab Animation
I found another Dribbble design I wanted to make in Flutter, my last post was well received and I had some free time, so here's the final result, blog, and code:​https://i.redd.it/9ghy325urk721.gif​Blog here:https://medium.com/@tonyowen/flutter-bottom-tab-bar-animation-75d1ca58c096Code here:https://github.com/tunitowen/tab_bar_animationDribbble design here:https://dribbble.com/shots/5419022-Tab

December 31, 2018 at 09:37AM by tunitowen
http://bit.ly/2SrRfyP
New post on /r/flutterdev subreddit:

<b>A bug?? an error? what is it? how to fix it???</b>
this is my code&#8203;<strong>import</strong> 'dart:convert';
<strong>import</strong> 'package:flutter/material.dart';
<strong>import</strong> 'package:http/http.dart' <strong>as</strong> http;
<strong>void</strong> main() => runApp(MyApp());
<strong>class</strong> MyApp <strong>extends</strong> StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
<strong>class</strong> _MyAppState <strong>extends</strong> State<MyApp> {
String geturl = "http://localhost:5984/yolo/_all_docs?include_docs=true";
List Data;
String k;
Future<String> makeRequest() <strong>async</strong> {
String username = 'vaishakmusic';
String password = 'yolo641234';
String basicAuth =
'Basic ' + base64Encode(utf8.encode('$username:$password'));
<strong>var</strong> response = <strong>await</strong> http.get(Uri.<em>encodeFull</em>(geturl),
headers: {"Accept": "application/json", "authorization": basicAuth});
setState(() {
<strong>var</strong> extractedData = json.decode(response.body);
Data = extractedData["rows"];
k = Data[0]["doc"]["homeTeam"]["team"];
});
}
@override
<strong>void</strong> initState(){
<strong>this</strong>.makeRequest();
}
@override
Widget build(BuildContext context) {
<strong>return</strong> MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text("hello"),
),
body: Center(
child: Text(
k
),
),
),
);
}
}&#8203;this is my error&#8203;&#8203;Performing hot restart...Syncing files to device iPhone 8 Plus...Restarted application in 3,436ms.flutter: &#9552;&#9552;&#9569; EXCEPTION CAUGHT BY WIDGETS LIBRARY &#9566;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;flutter: The following assertion was thrown building MyApp(dirty, state: _MyAppState#9c5b5):flutter: 'package:flutter/src/widgets/text.dart': Failed assertion: line 235 pos 15: 'data != null': is notflutter: true.flutter:flutter: Either the assertion indicates an error in the framework itself, or we should provide substantiallyflutter: more information in this error message to help you determine and fix the underlying cause.flutter: In either case, please report this assertion by filing a bug on GitHub:flutter: <a href="https://github.com/flutter/flutter/issues/new?template=BUG.md">https://github.com/flutter/flutter/issues/new?template=BUG.md</a>flutter:flutter: When the exception was thrown, this was the stack:flutter: #2 new Text (package:flutter/src/widgets/text.dart:235:15)flutter: #3 _MyAppState.build (package:getandpost/main.dart:49:18)flutter: #4 <a href="https://StatefulElement.build">StatefulElement.build</a> (package:flutter/src/widgets/framework.dart:3809:27)flutter: #5 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3721:15)flutter: #6 Element.rebuild (package:flutter/src/widgets/framework.dart:3547:5)flutter: #7 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3701:5)flutter: #8 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3848:11)flutter: #9 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3696:5)flutter: #10 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2950:14)flutter: #11 Element.updateChild (package:flutter/src/widgets/framework.dart:2753:12)flutter: #12 RenderObjectToWidgetElement._rebuild (package:flutter/src/widgets/binding.dart:909:16)flutter: #13 RenderObjectToWidgetElement.mount (package:flutter/src/widgets/binding.dart:880:5)flutter: #14 RenderObjectToWidgetAdapter.attachToRenderTree.<anonymous closure> (package:flutter/src/widgets/binding.dart:826:17)flutter: #15 BuildOwner.buildScope…
New post on Flutter Dev Google group:

Flutter infinite/long list - memory issue and stack overflow error
Hi there, My use case is to create a list view of articles (each item have the same look, there could be huge amount of articles, e.g. > 10000). I tried with - ListView with ListView.builder: it supposes only to render the item when the item is displayed - ScrollController: to determine when to

December 31, 2018 at 03:01PM by Zhe Xiao
http://bit.ly/2Am3qX2
New post on /r/flutterdev subreddit:

Starting out - where to start?
Hi guys,I am in the early phases of learning dart and flutter, and I have no prior experience with coding at all. I have wanted to learn for some time, but I had no objective to focus on until now.I have been trawling YouTube and various other sites for guidance, and I was wondering if any of you have any good resource suggestions on where to start out?Edit:I have installed the following already: Android Studio, Visual Studio, GitBash, and I have been playing around with the basic app in the emulator, but I am getting stumped on much of the jargon. Early days!

December 31, 2018 at 03:02PM by memeotis
http://bit.ly/2TiffUY
New post on /r/flutterdev subreddit:

Flutter 2018 Recap – Flutter Community – Medium
http://bit.ly/2TijMGZ

December 31, 2018 at 05:28PM by Nash0x7E2
http://bit.ly/2CGKROB