Flutter Heroes
25.6K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

How to pass the JSON from existing web application in our flutter application
How to pass the JSON from existing web application in our flutter application . Can someone help me.

April 16, 2019 at 01:20PM by Flutter Guy
http://bit.ly/2GpuFmO
New post on /r/flutterdev subreddit:

Flutter Run can't find "CameraPlugin.h"
I'm having a hard time compiling my Flutter application that uses the camera package for iOS. The error I'm getting is:``` tcp_flutter [master] flutter run -d 9B1AED9A-88A5-4A88-8618-10DFEA93FEBD Launching lib/main.dart on iPhone Xʀ in debug mode... Running pod install... 1.6s ├─Assembling Flutter resources... 2.1s └─Compiling, linking and signing... 2.4s Xcode build done. 7.8s Failed to build iOS app Error output from Xcode build: ↳ ** BUILD FAILED **Xcode's output: ↳ /Users/davydany/.tcp/tcp_flutter/ios/Runner/GeneratedPluginRegistrant.m:6:9: fatal error: 'camera/CameraPlugin.h' file not found #import <camera/CameraPlugin.h> ~~~~~~~~~~~~~~~~~~~~~~ 1 error generated.Could not build the application for the simulator. Error launching application on iPhone Xʀ. ```The things I've tried already are:Commented out use_frameworks! in the Podfile and run pub updateAdded the following Usage Descriptions to ios/Runner/Info.plist:<key>NSCameraUsageDescription</key> <string>Can I use the camera please?</string> <key>NSMicrophoneUsageDescription</key> <string>Can I use the mic please?</string>I've exhausted the options from what I saw online. Has anyone experienced this issue and figured it out?

April 16, 2019 at 01:01PM by davydany
http://bit.ly/2Dhvv37
New post on /r/flutterdev subreddit:

Video Editor Flutter
Is there any plugin to make an app with video editor features like user can add filter on video , add text ,draw and add stickers.Please give your suggestions.

April 16, 2019 at 02:35PM by itsravishankarsingh
http://bit.ly/2Zd11sm
New post on Flutter Dev Google group:

Dynamic textbox validation and data saving using Bloc & streams
Hi all I am new to Flutter, I have following problem. I want to create dynamic textbox using flutter forms but How to handle validation and data submission using Streams & bloc. I use bloc pattern. for eg: I have task name, start date & end date again user can create another group of fields

April 16, 2019 at 03:41PM by ATC
http://bit.ly/2GlmjeV
New post on Flutter Dev Google group:

Please someone should help me with solution i have try to resolve this for days now
Please someone should help me with solution i have try to resolve this for days now, below is the output from the Android Studio console: Thanks -- Launching lib\main.dart on Android SDK built for x86 in debug mode... Initializing gradle... Resolving dependencies... Running Gradle task

April 16, 2019 at 05:04PM by Emmanuel Agu Iroegbulam
http://bit.ly/2Ggm1pA
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. &darr; 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