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

Join/Search Groups Tutorial
Hello everyone,Just started getting my feet wet with flutter a couple of days ago and I am creating an app for personal use.Background context:A user can create groups and invite people in their group. Another layer is a user can search for a group and if the group is marked as public by owner, they can join that group.​Appreciate all the advice/s

May 28, 2019 at 08:40PM by SwimmingCount
http://bit.ly/2QrThij
New post on /r/flutterdev subreddit:

Is it possible to make a flutter app that is single binary for mac/pc/unix?
Ive been a bit of the flutter loop. Im catching up and learning it has made inroads to mac/pc development.Is it currently possible to compile a flutter project so it ends up being an single binary? Like electron does?If not directly possible, any tips on other development tools that could get it there?Im primarly interested in doing all my coding in flutter yet run on macs/pc as a single executable for the user.

May 29, 2019 at 12:58AM by yabadababoo
http://bit.ly/2wsllIZ
New post on /r/flutterdev subreddit:

[Need help] Redirect limit exceeded doing http request
IntentionI am learning how to use http package (link) to retrieve data without GUI, by sending and http GET request via http.send() method.ObstaclesI quickly learnt that some requests work and some not. For example, ycombinator and ebay works, and more dynamic website(?) like Taobao doesn't.When the request works, I got the html printed out. when it doesn't I got a Redirect limit exceeded exception.Resolution attemptedHandling the exception only prevent the program from crashing, but not the html wanted.I also consider it might require a clear indication of the user-agent, and added the user-agent String according, an unfruitful attempt.Possible reasonsThe website might be configured to serve browser only, however, curl in command-line and postman work without a problem.Another reason could a faulty http request header, result in redirection loop that eventually fail.QuestionIs failure due to the request being configured incorrectly?How to prevent redirection loop which results in getting no html data?​I am still new to dart, http request and scraping and humbly ask for your help. Thank you in advance.​Here's the code I used:
// List of URLs var url = "https://news.ycombinator.com"; var ebay = "https://www.ebay.com.au/itm/10W-12V-SOLAR-PANEL-and-2-amp-REGULATOR-RV-camp-marine-TRICKLE-BATTERY-CHARGER/172058512436?_trkparms=pageci%3Ac2411dc4-811e-11e9-8e21-74dbd1803149%7Cparentrq%3Afd751ccc16a0abc05acfffa2ffee9352%7Ciid%3A1"; var tmall = "https://detail.tmall.com/item.htm?id=577812405625"; // Instantiate the client var client = Client(); // Create the request var request = Request("GET", Uri.parse(url)); // var request = Request("GET", Uri.parse(ebay)); // var request = Request("GET", Uri.parse(tmall)); // Configure the request headers request.headers[HttpHeaders.contentTypeHeader] = 'text/html; charset=utf-8'; request.headers[HttpHeaders.userAgentHeader] = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:67.0) Gecko/20100101 Firefox/67.0'; // Handling response var response = await client.send(request); response.stream.transform(utf8.decoder).listen((onData) { print(onData); }); 


May 29, 2019 at 05:00AM by marcoleongdev
http://bit.ly/2JJNLa8
New post on /r/flutterdev subreddit:

3 Quick and Easy Dialogs in Flutter with RfFlutter
http://bit.ly/2Kaa3Bb

May 29, 2019 at 04:40AM by Filledstacks
http://bit.ly/2JKrjxM
New post on /r/flutterdev subreddit:

Which architecture pattern should I use with provider ?
I am working on an app and want to use provider in my project instead of bloc .

May 29, 2019 at 09:16AM by ashishrawat2911
http://bit.ly/2HJXwDb
New post on Flutter Dev Google group:

[Urgent] data parsing problem
Hello Flutter Users ! Now I had some problem of data processing in flutter. My app communicate with bluetooth using microprocessor. mcu send packet ; { 0x13, 0x10,0x21,0xff, 0xFF, 0xFF, 0xFF, 0x5C,0xEE,0x20,0x36,} my app received this packet bytes to string - *First I tried * var

May 29, 2019 at 09:47AM by Dev Jeffrey
http://bit.ly/2JPWO9N
New post on /r/flutterdev subreddit:

Implementing JS libraries, VueJS into Flutter
Hi,I understand Flutter is all about widget. Is that possible to use VueJS code, JS libraries into Flutter widget.we have a large independent JS libraries, VueJS code. I want to utilize the flutter environment to deploy IOS and Android app with single code base.Please let me knowThanks in advance :-)

May 29, 2019 at 10:55AM by techiesaravana
http://bit.ly/2wqlcWL
New post on Flutter Dev Google group:

Using SockJS in Flutter
Hi, i want to connect to a Websocket chat channel in a flutter app. The server site is created with java spring boot and handled with sockJS. In Angular its working likes this: let url = 'ws://localhhost:8080/websocket/chat'; const authToken = this.authServerProvider.getToken(); if

May 29, 2019 at 01:37PM by Nicky S
http://bit.ly/2Wf1FI7
New post on /r/flutterdev subreddit:

Flutter Merchandise
Is there anywhere that I can buy Flutter merchandise(ie clothing, notebooks, etc) or is there any plans in near future to sell items with Flutter branding?The Google store didn’t have any Flutter items. I found a third party but the items were limited.

May 29, 2019 at 05:16PM by ngrunks
http://bit.ly/2HIQ1fx
New post on Flutter Dev Google group:

PRENDE CAZZI IN CULO DI 30 CM: LUIGI BERLUSCONI (CON PADRE IL PEDOFILO SPAPPOLA MAGISTRATI SILVIO BE
PRENDE CAZZI IN CULO DI 30 CM: LUIGI BERLUSCONI (CON PADRE IL PEDOFILO SPAPPOLA MAGISTRATI SILVIO BERLUSCONI, IL VERME ASSASSINO SILVIO BERLUSCONI, LO STRAGISTA SILVIO BERLUSCONI CHE ORA HA FATTO AMMAZZARE ANCHE LA PER BENISSIMO IMANE FADIL, DOPO.............AVER FATTO AMMAZZARE EGIDIO VERZINI

May 29, 2019 at 09:44PM by Maria Grazia Crupi Examantedi-MarinaBerlusconi
http://bit.ly/2EHrN3m
New post on /r/flutterdev subreddit:

Looking for bachelor thesis ideas
I wanted to learn Flutter anyway so I thought about combining that with writing my bachelor thesis next semester.Do you guys have some ideas/interesting topics/unsolved problems in the Flutter world that should be looked into?​Thanks in advance!

May 29, 2019 at 09:09PM by Affenbob123
http://bit.ly/2EFIVGQ
New post on Flutter Dev Google group:

Stream subscription
Hi, I am new to flutter and reading about streams. On this page http://bit.ly/2EGtf6m I found the download stream_controller.dart and it has the following code void demoPause() { var counterStream = Stream.periodic(Duration(seconds: 1), (x) => x).

May 29, 2019 at 10:34PM by Christopher Bagge
http://bit.ly/2XfQxaf
New post on Flutter Dev Google group:

DecorationImage do not cover container
Hi I am trying to cover a container but it is impossible Here is code Container( width: double.infinity, height: 360.0, decoration: BoxDecoration( color: Colors.yellow, image: DecorationImage( image: AssetImage("assets/wallpap

May 29, 2019 at 10:58PM by Eduard Hasanaj
http://bit.ly/2XdEtGp
New post on Flutter Dev Google group:

Integration testing for Flutter Web apps?
Integration Testing cookbook, it is supposed to work for Flutter Web? http://bit.ly/2Qu79Zc What do you use for Integration testing for Flutter Web apps?

May 30, 2019 at 12:39AM by John West
http://bit.ly/2wC7bW5
New post on /r/flutterdev subreddit:

GoogleMap search places Widget is now available as a package!
http://bit.ly/2WaZ6qw

May 30, 2019 at 12:09AM by Bernardi_23
http://bit.ly/2HJtC1V