Flutter Heroes
25.9K subscribers
272 photos
2 videos
31.1K links
Download Telegram
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
Reddit: Just published my first plugin to uniquely identify devices even after reinstalls! Hope it helps some of you
https://ift.tt/2MwVk55

Submitted August 16, 2018 at 09:33PM by TheGigaDroid
via reddit https://ift.tt/2PdY8CH
GGroup: [Breaking Change] Deprecating CupertinoDialog
Hi All, *TL;DR: I'm planning to deprecate CupertinoDialog in favor of a new widget called CupertinoPopupSurface.* *Why?* There are currently 2 widgets in Cupertino called a "dialog": CupertinoDialog and CupertinoAlertDialog. CupertinoAlertDialog represents what an actual alert dialog looks

Submitted August 16, 2018 at 10:47PM by Matt Carroll
via Flutter Dev https://ift.tt/2Btw37J
Reddit: Your experience with the Material and base widgets in Flutter? Better than Android native?
Initially I was very enthusiastic, but after working with Flutter for several months, my perception changed a bit.First of all, it is great that Flutter is truly cross-platform. Apps look and behave exactly the same on Android and iOS. Development with the widget system and hot reload is fast. Awesome!When I started with Flutter, I read that it has one of the most sophisticated Material implementations out there, even beating Android native. This is true for some widgets, like the app bar, buttons, form controls and the ink system. Those are highly customizable and follow the spec very closely.But when it comes to more complex widgets and animations, Flutter lags far behind. In particular:Performance is not on par with Android nativeListView/ReorderableListView/AnimatedListare less powerful than Android'sRecyclerView, which is crucial for many applications. What makesRecyclerViewso special are its animations and the diffing algorithm (DiffUtil`) behind it. Things that do not exist in FlutterSortable list performance drops when there are too many itemsBottom sheets implementation is incompleteScrolling is always limited to one axis, no 2D scroll view.There is no way to define a tappable label for a checkbox or radio button.No vector drawables (flutter_svg and icon fonts fill the gap right now, but that's far from ideal)No way to draw dotted/dashed lines or bordersWhat's your experience?

Submitted August 17, 2018 at 01:59AM by boformer
via reddit https://ift.tt/2L02oST
Reddit: Creating Custom Form Fields in Flutter – SAUGO 360 – Medium
https://ift.tt/2MvFJ5K

Submitted August 17, 2018 at 03:25PM by aalhamali
via reddit https://ift.tt/2MuXvpM
Enable the PerformanceOverlay to visualize possible jank in your app.

Read more about how to interpret these graphs and what to do with the insights &rarr; https://t.co/w4xV9cgeSf #FlutterFriday pic.twitter.com/Sg7zx7GMwO— Flutter (@flutterio) August 17, 2018

August 17, 2018 at 08:19PM
via Twitter https://twitter.com/flutterio