Flutter Heroes
25.5K subscribers
272 photos
2 videos
31.1K links
Download Telegram
GGroup: PathProvider not found on iOS build
Hi, I'm trying to use PathProvider from http://ift.tt/2Hptodc to access device's storage. It works fine on Android, but on iOS, i have compile error fatal error: 'path_provider/PathProviderPlugin.h' file not found Tried solutions listed here: https://github.c

Submitted March 12, 2018 at 09:46AM by Ha Thuy, Suesi Tran
via Flutter Dev http://ift.tt/2FM7X8Q
GGroup: Android Emulator Showing Text as Diagonally and Increased Font Size
Hi All, I've just started learning Flutter to build mobile apps. The issue that I'm currently facing is whenever I'm running my app on the emulator the text on the screen is coming as zoomed and diagonally. < https://lh3.googleusercontent.com/-n3_-zmxuruw/WqaCgrjFQwI/AAAAAAAAVio/6zCVeysZnW0_hJ-

Submitted March 12, 2018 at 02:38PM by Ashutosh Anand
via Flutter Dev http://ift.tt/2FuviNh
GGroup: Android Emulator Showing Text as Diagonally and Increased Font Size
Hi All, I've just started learning Flutter to build mobile apps. The issue that I'm currently facing is whenever I'm running my app on the emulator the text on the screen is coming as zoomed and diagonally. < https://lh3.googleusercontent.com/-n3_-zmxuruw/WqaCgrjFQwI/AAAAAAAAVio/6zCVeysZnW0_hJ-

Submitted March 12, 2018 at 02:38PM by Ashutosh Anand
via Flutter Dev http://ift.tt/2FuviNh
GGroup: Is there an API to convert a widget tree to Canvas or Image or Picture ?
Is there an API to convert a widget tree to Canvas or Image or Picture ?

Submitted March 12, 2018 at 05:22PM by Sreenath N
via Flutter Dev http://ift.tt/2DlXZWI
GGroup: Does Transform widget scales Text smoothly without causing jagged edges ?
Does Transform widget scales Text smoothly without causing jagged edges ? Sample code: new Transform( transform: new Matrix4.identity()..scale(s, s, s), alignment: FractionalOffset.topLeft, child: new Text("Scale = " + s.toString()), ) It scales the text smoothly in my android phone.

Submitted March 12, 2018 at 09:11PM by Sreenath N
via Flutter Dev http://ift.tt/2DmZFPI
GGroup: Best way to style Material forms?
Hello, I am trying to figure out how to change the color of text field lines and their label. The only property on InputDecoration that seemed related to this was the fillcolor property, but assigning it a color did not seem to have any observable effect. Here is my code in case anyone has

Submitted March 12, 2018 at 11:19PM by ez...@sightworks.com
via Flutter Dev http://ift.tt/2p99M5z
GGroup: Breaking Change: --preview-dart-2 turned on by default
What is changing? tldr: As part of Dart 2 release, we will be enabling --preview-dart-2 by default. This will cause some breakages due to stricter Dart type enforcement. The change is expected in master in the next few days, and will likely be propagated to our next beta channel build.

Submitted March 13, 2018 at 06:20AM by Leaf Petersen
via Flutter Dev http://ift.tt/2tHqOx3
GGroup: How to make dart Widgets fully transparent to see platform native view under FlutterView?
I want to create a video chat app, using some platform native SDK like WebRTC to implement the video part, using flutter to implement other interactivity, how could I achieve that? In Android, I try to hook the createFlutterView method, create a FrameLayout to hold the FlutterView and other

Submitted March 13, 2018 at 07:05AM by Piasy Xu
via Flutter Dev http://ift.tt/2tDZcZI
Reddit: Good flutter app structure
Any good flutterio app structures that scales well over time? Used the mantra way on reactjs and tend to do so here, too.https://medium.com/wertarbyte/structure-your-react-apps-the-mantra-way-3a831ffd1580

Submitted March 13, 2018 at 10:01AM by Saschb2b
via reddit http://ift.tt/2p6jTbV
GGroup: Is there any architecture pattern?
Hi guys I would like to know about any coding pattern to follow ? Like we have in native android - MVP, MVVM? Consider app like all CRUD operations from server ? Thanks. also join this if anyone interested Check my latest video on flutter : https://www.youtube.com/watch?v=x_E4otuegDU

Submitted March 13, 2018 at 12:18PM by Gajjar
via Flutter Dev http://ift.tt/2p4pIXB
Reddit: Dynamically add/remove tabs
I decided to play around with flutter and looks like i am stuck with pretty basic thing. I have a widget which shows tabs and i have a button 'Create new tab' which suppose to add new tab. So i made a stateless widget and just pass items down. But for a some reason TabController uses only initial value.I checked sources and find out that DefaultTabController is StatefulWidget so it creates state only once and never changes it. So looks like it does not matter how many time you do new YourStatefullWidget you will get only one instance of state.
class MyTabsPage extends StatelessWidget { List<Icon> items; MyTabsPage({ this.items }); @override Widget build(BuildContext context) { return new DefaultTabController( length: items.length, child: new _TabsWidget(items: items) ); } } class _TabsWidget extends StatelessWidget { List<Icon> items; _TabsWidget({ this.items }); @override Widget build(BuildContext context) { TabController controller = DefaultTabController.of(context); print('Items count: ' + controller.length.toString()); // Shows only initial amount of tabs return new TabPageSelector(controller: controller); // Renders only initial amout of tabs } } 


Submitted March 13, 2018 at 12:10PM by _KillaBee_
via reddit http://ift.tt/2tJmjC7
Reddit: Contact Picker
I am using contact_picker for to get the contacts, but while click back option in app, app was closed, so how to set the back operation in contact_picker app?

Submitted March 13, 2018 at 01:18PM by EphronKarthick
via reddit http://ift.tt/2Fxz6wZ