Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
Reddit: Help with Flutter Tutoiral
Hi everyone,I am new to flutter and just following some basic tutorials, however I have been following this: https://hackernoon.com/flutter-iii-lists-and-items-6bfa7348ab1b and I can't seem to get the code to run.Widget build(BuildContext context) { return new ListItem( <-- Error here "Constructor returns dynamic that isn't expected for type of widget. Undefined class 'List Item' leading: new CircleAvatar( child: new Text(_contact.fullName[0]) ), title: new Text(_contact.fullName), subtitle: new Text(_contact.email) ); } Any advice on this. Can't seem to fix it.

Submitted August 15, 2018 at 04:52AM by SSJCalzana
via reddit https://ift.tt/2P9XJRK
Reddit: [Dev] I just released an open beta for the Flutter rewrite of my Android app, Call Manager
Check it out here: https://play.google.com/store/apps/details?id=com.groovinchip.flutter.callmanager

Submitted August 15, 2018 at 04:21AM by GroovinChip
via reddit https://ift.tt/2B9mjyY
GGroup: Difficulties getting a flutter app running with a local engine
Hi there, I've followed all the steps here https://ift.tt/2KPSfbq. I got all the way to iOS cross-compiling and the last command: flutter run --local-engine-src-path /Users/x2UP_Media/Sites/sandbox/flutter/ engine/src --local-engine=ios_debug_sim_unopt I

Submitted August 15, 2018 at 07:19AM by Jorge Colon
via Flutter Dev https://ift.tt/2nFCavE
Reddit: Flutter Facebook Login
An easy to follow tutorial for Facebook login in Flutter: https://medium.com/@rohantaneja/flutter-facebook-login-77fcd187242@flutterio @flutterdaily @flutterflakes #flutter #fluttercommunityhttps://i.redd.it/3qn4dfv7p9g11.png

Submitted August 15, 2018 at 04:27PM by tanejarohan
via reddit https://ift.tt/2MOH1px
GGroup: Failed to install Release APK. Assertion Failed on build but APK generated
Hi, When i build a release APK, i am seeing an assertion failed error and compiler terminated unexpectedly. But an apk is generated. If i cannot install the apk also. Help me find the cause for this error. Thanks. flutter build apk Initializing gradle...

Submitted August 15, 2018 at 05:31PM by Ragul Mathawa
via Flutter Dev https://ift.tt/2L0rtgI
Reddit: [Dev] I just published my first Flutter package
https://pub.dartlang.org/packages/groovin_material_icons#-readme-tab-This package is a fork of community_material_icons, which seems to have been abandoned. There are some icons that the original developer added to the repo, but were never released on pub. This package includes those icons.

Submitted August 15, 2018 at 06:38PM by GroovinChip
via reddit https://ift.tt/2MjqlKv
Watch as @RedBrogdon and @mjohnsullivan build a Flutter plugin for pressure sensors on Android and iOS. Then stay tuned for a special guest from the engineering team for more on Dart internals.

Catch the latest #BoringShow here &rarr; https://t.co/UwyirXuOxv pic.twitter.com/bkWPVPSbQ4— Flutter (@flutterio) August 15, 2018

August 15, 2018 at 08:52PM
via Twitter https://twitter.com/flutterio
Quickly add a placeholder element to your prototype with the Placeholder widget. It seems minor, but it saves you the trouble of searching for a placeholder image and it renders as the standard layout placeholder graphic. #WidgetWednesday

More info &rarr; https://t.co/1l1MwFGA24 pic.twitter.com/EIbhiapUEN— Flutter (@flutterio) August 15, 2018

August 15, 2018 at 10:26PM
via Twitter https://twitter.com/flutterio
GGroup: How to set up the Flutter mirror in China?
Hi: I'm a Flutter developer in China,I want to set up the Flutter mirror in my company,please tell me how to do it?

Submitted August 16, 2018 at 10:09AM by 寇德
via Flutter Dev https://ift.tt/2KYwJRE
GGroup: Flutter IntelliJ Console can print whole data....
Hi, I have a data similar to 24 rows and 7 column type table as a List. Problem is that when I use print(myData); debugPrint(myData); Can see all data in IntelliJ. Suppose to print all data in console… But cant show the data… Any Help please Suppose to print like this: [

Submitted August 16, 2018 at 12:31PM by Niyazi Toros
via Flutter Dev https://ift.tt/2nH0zRJ
GGroup: Flutter print or debugPrint can show or print data in IntelliJ console?
Hi, I have a data similar to 24 rows and 7 column type table as a List. Problem is that when I use print(myData); debugPrint(myData); Cannot print in console all data in IntelliJ. Suppose to print all data in console… But cant print the data… Also I cannot see ALL data in List view.

Submitted August 16, 2018 at 12:41PM by Niyazi Toros
via Flutter Dev https://ift.tt/2Pe9kz2
Reddit: Add Search bar to code
So I am following a tutorial and I am wanting to add a search bar at the top of a contacts list page however I can't seem to get the search bar to even show up in my app. I was able to get the search bar working in my code initially by itself, but it wont show up like it used too. Im sure it will have something to do with the structure but any advice would be great. Any ideas? class SearchBar extends StatefulWidget { @override _SearchBar createState() => new _SearchBar(); }
 class ContactsPage extends StatelessWidget { @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text("Contacts"), ), body: new ContactList(kContacts)); } } class ContactList extends StatelessWidget { final List<Contact> _contacts; ContactList(this._contacts); @override Widget build(BuildContext context) { return new ListView.builder( padding: new EdgeInsets.symmetric(vertical: 8.0), itemBuilder: (context, index) { return new _ContactListItem(_contacts[index]); }, itemCount: _contacts.length, ); } } class _ContactListItem extends ListTile { _ContactListItem(Contact contact) : super( title: new Text(contact.fullName), leading: new CircleAvatar(child: new Text(contact.fullName[0]))); } 
Search bar code:
class _SearchBar extends State<SearchBar> { Widget appBarTitle = new Text("Search Contacts..."); Icon actionIcon = new Icon(Icons.search); @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( centerTitle: true, title:appBarTitle, actions: <Widget>[ new IconButton(icon: actionIcon,onPressed:(){ setState(() { if ( this.actionIcon.icon == Icons.search){ this.actionIcon = new Icon(Icons.close); this.appBarTitle = new TextField( style: new TextStyle( color: Colors.white, ), decoration: new InputDecoration( prefixIcon: new Icon(Icons.search,color: Colors.white), hintText: "Search...", hintStyle: new TextStyle(color: Colors.white) ), );} }); } ,),] ), ); } } 


Submitted August 16, 2018 at 12:09PM by SSJCalzana
via reddit https://ift.tt/2PeCgHd
GGroup: How to stream video from camera to a private server
Hi, I am working on a project for my company and we need to stream the video from the camera to our servers and I was wondering if that is even possible to do with the camera plugin. Reading the documentation I only saw the API to save a video to a file and nothing that resembles the ability to

Submitted August 16, 2018 at 04:25PM by João Paulo Farias
via Flutter Dev https://ift.tt/2KXtwSw
Reddit: I created a plugin to extract tiles from a mbtiles file
Pretty much the title. I hope is useful for someone trying to make an offline map.https://pub.dartlang.org/packages/flutter_mbtiles_extractorAny recommendation/suggestion is appreciated.

Submitted August 16, 2018 at 05:01PM by sekktor01
via reddit https://ift.tt/2KX6Y4t
GGroup: Re: Flutter IntelliJ Console can print whole data....
Sorry, it is hard to understand what the problem is. Can you describe it another way? Is it just printing some of the data on the console, but not all? Do you have some source code that we can look at that shows the problem? -Greg. On Thu, Aug 16, 2018 at 3:38 AM Niyazi Toros
Submitted August 16, 2018 at 05:36PM by G Spencer
via Flutter Dev https://ift.tt/2BhqusO
GGroup: How to set proxy for flutter app
I want to set proxy for my app like as set proxy for app with retrofit in android native. is this possible? actually i want to use proxy for firebase

Submitted August 16, 2018 at 09:18PM by Mohammad Meshkani
via Flutter Dev https://ift.tt/2nKxgOg