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

Created login page ui reference uplabs.
http://bit.ly/2DJekb4

May 02, 2019 at 12:33PM by follow2vivek
http://bit.ly/2WhUsTD
New post on /r/flutterdev subreddit:

Flutter representation of a Sales APP UI from Uplabs
http://bit.ly/2UY3HGQ

May 02, 2019 at 03:55PM by JideGuru
http://bit.ly/2UV7Fjy
New tweet from FlutterDev:

Are you wondering what’s happening on the 1st June? Look no further. Its #Hack19 - the first ever International Flutter Hackathon! Find out more on https://t.co/O0TlVAHOMr@FlutterComm @FlutterDev #Flutter— Flutter Community (@FlutterComm) May 2, 2019

May 02, 2019 at 05:48PM
http://twitter.com/FlutterDev/status/1123977689545809922
New post on /r/flutterdev subreddit:

Continuous integration and delivery for Flutter with Firebase
http://bit.ly/2ZNhmo1

May 02, 2019 at 05:49PM by Gigatronbot
http://bit.ly/2Y1qmnK
New post on Flutter Dev Google group:

examples of integrating GCP Vision API with Flutter?
Do we have any examples or documentation of integrating GCP AutoML Cloud or Edge models in a flutter app? In a Linux application, when making an online prediction using the Vision API or my trained AutoML model from an https request, a token is generated using the gcloud SDK from a service

May 02, 2019 at 10:16PM by Randall Rhea
http://bit.ly/2Wjwya9
New post on Flutter Dev Google group:

How to ensure background data transfer processes will stay alive
Hi, In two words, there is a device to collect data overnight. It is sending data to the app, which uploads it to server. What can I do to ensure the transfer processes will stay alive and won’t be killed by Android?

May 02, 2019 at 10:19PM by Michael Derzhavets
http://bit.ly/2DHtVHW
New post on /r/flutterdev subreddit:

Release Notes Flutter 1.5.4 · flutter/flutter Wiki · GitHub
http://bit.ly/2WjOykF

May 03, 2019 at 12:43AM by anticafe
http://bit.ly/2DLxihf
New post on /r/flutterdev subreddit:

I've created a flutter plugin to open video files using MX player.
http://bit.ly/2VW7MN6

May 02, 2019 at 10:01PM by adarbadar
http://bit.ly/2Li8nYB
New post on /r/flutterdev subreddit:

Experimental Realm binding using dart:ffi preview support
http://bit.ly/2vwBexG

May 02, 2019 at 09:50PM by stuffokator
http://bit.ly/2LiOm4j
New post on Flutter Dev Google group:

pub.dartlang website is not loading
hello flutter team flutter dart language is not working please check the issue and help as soon as possible Thank you please check the attached file

May 03, 2019 at 07:27AM by yogesh bhanushali
http://bit.ly/2PMdFKK
New post on /r/flutterdev subreddit:

how to sign a flutter project output with a key-store
i need to sign a flutter output with a key-store to use it on fire-base. debug sign is not accepted. i do not know how to do it on windows. how should if do this????

May 03, 2019 at 11:34AM by virrtouso
http://bit.ly/2GZWmTG
New post on /r/flutterdev subreddit:

How To Upload Image and Body to Api EndPoint
Hey Everyone,​I'm new to flutter and trying to upload a image file as well as a body of text but, it seems like if I send it as a multipart file then, the access token is unrecognized by my server and if I send it via http.post, then I get: Unhandled Exception: FormatException: Unexpected character (at line 2, character 1)E/flutter ( 9796): <!DOCTYPE html>. I'm not sure what I'm doing wrong. Here is my code:​Future<dynamic> createPreferences(
double age,
File currentSelfie,
String level,
String nickName,
String phone,
String customerType,
String _selectedFeelings,
) async {
var cSelfie = await currentSelfie.readAsBytes();
var length = await currentSelfie.length();
var stream =
http.ByteStream(DelegatingStream.typed(currentSelfie.openRead()));
Map<String, dynamic> custPreferences = {
'access_token': _accessTkn,
'phone': phone,
'nick_name': nickName,
'wants_to_feel': _selectedFeelings,
'customer_type': customerType,
'age': '${age}',
'current_selfie': base64Encode(currentSelfie.readAsBytesSync()),
};
var url = "http://10.0.2.2:8000/api/create\_customer\_details/";http.post(url, body: json.encode(custPreferences), headers: {
"Content-Type": "application/x-www-form-urlencoded"
}).then((http.Response response) {
print(response);
final Map<String, dynamic> responseData = json.decode(response.body);
print(responseData);
print('Response body: ${response.body}');
});
}​I'm not sure where I'm going wrong here. Any assistance would be appreciated.

May 03, 2019 at 12:55PM by Theprivateshow_
http://bit.ly/2DPakWu