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

sorted_chips_row : A Flutter Widget displaying a row of Material Chips, sorted according to the provided comparison function.
http://bit.ly/2Pe2x8Q

April 16, 2019 at 04:57PM by EngineerScientist
http://bit.ly/2vduWmh
New post on Flutter Dev Google group:

how to load csv file in flutter?
*hello * i want to use *csv *file in my *flutter* app but i have an *exception *and i don'know how to solve it? help me please import 'package:flutter/material.dart'; import 'package:flutter/services.dart' ; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override

April 16, 2019 at 07:35PM by Figuir DJamila
http://bit.ly/2Ph1tkH
New post on /r/flutterdev subreddit:

What's best practice? Drawing custom shapes or using ClipPath?
Anyone have any thoughts on this?

April 16, 2019 at 10:40PM by NeverSpeaks
http://bit.ly/2IzMD7D
New tweet from FlutterDev:

Get a perfect fit with SizedBox!

The SizedBox widget gives you width and height control for pixel-perfect sizing every time.

Click for more #WidgetoftheWeek tips. ↓ pic.twitter.com/H8et6Qacal— Flutter (@FlutterDev) April 16, 2019

April 17, 2019 at 12:55AM
http://twitter.com/FlutterDev/status/1118286761656864770
New post on /r/flutterdev subreddit:

Flutter Multi select ChoiceChip
http://bit.ly/2Gr3JmB

April 17, 2019 at 06:29AM by KarthikPonnam
http://bit.ly/2UGocfT
New post on /r/flutterdev subreddit:

Simple stream question
I think I'm confused about how to properly clean up streams and behavior subjects. I have broken down my issue to a very simple widget test.​When I run this test:```testWidgets('Test behavior subject', (WidgetTester tester) async {final subject = BehaviorSubject<int>();
final stream = subject.stream;
subject.add(4);
print("getting first item");
final item = await stream.first;
print("got first item: $item");
subject.close();});
```It prints out:```getting first itemgot first item: 4```And then the test fails because it exceeds the timeout. But the same code works fine in a regular test.What am I misunderstanding about widget tests? Are you not allowed to use streams / behavior subjects in widget tests?

April 17, 2019 at 06:16AM by korbonix
http://bit.ly/2Ggjcoo
New post on Flutter Dev Google group:

Plugins Conflict with Camera Permission
As i am using plugins, 1. image_picker: 0.5.3+1 2. simple_permission: 0.1.9 in a single project ,but i am not able to build project because there is some issue with with Camera Permission which causes conflict. I also migrated project to AndroidX but problem still exist. please suggest any

April 17, 2019 at 07:51AM by I A KHAN
http://bit.ly/2V8SwPG
New post on Flutter Dev Google group:

Regarding Flutter Map Plugin
Dear sir, for last 6 months i am facing problem with Google_Maps_Flutter plugin unable to find example code. 1. their is no sample code for line draw between coordinates. 2. unable to apply moving effect like. [image: moving-animtion.gif]

April 17, 2019 at 12:04PM by prince.g...@gmail.com
http://bit.ly/2InjDRj
New post on Flutter Dev Google group:

Can I use my app from google voice?
I need to call on a method in my app (add a payment) and pass some parameters "i paid 50$ on gas" i have the app ready but i cant figure out how to integrate google assistant

April 17, 2019 at 03:05PM by Abbas Moussa
http://bit.ly/2IFQZKr
New post on /r/flutterdev subreddit:

Using google assistant with my flutter app?
I have an app that records the payments i do. I would like to be able to tell google assistant to open the app and record a payment (I have in the app a function that can parse the audio string and call on the function that adds payment if that helps), which would then be uploaded to the database and recorded. Is this possible? Example of what i want: "Ok google, tell My app that i spent x dollars." if so what's the best way?

April 17, 2019 at 02:53PM by Arcanefall_flutter
http://bit.ly/2XjSimA