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

Firebase storage tutorial
I'm currently playing with firebase storage, by using the firebase_storage package. But there are no good tutorials, and the documentation is only for Swift and Kotlin. Does someone know a good tutorial to start with firebase storage?

November 03, 2019 at 03:36PM by Qfine
https://ift.tt/2JLfPZk
New post on Flutter Dev Google group:

64 bit show stopper error
I am trying to publish our flutter application to the google play store and Im getting what appears to be a show stopper error... Error This release is not compliant with the Google Play 64-bit requirement The following APKs or App Bundles are available to 64-bit devices, but they only have

November 03, 2019 at 06:40PM by Sam Cromer
https://ift.tt/2rbazYr
New post on /r/flutterdev subreddit:

ISO an example for querying Firestore DB based on geopoints?
I currently have a Map screen and a Firestore query to "grab everything" from the DB. But I ultimately want a query that "grabs everything within a 5 mile radius of my objects".Each object in my database has a variable named geopoint that is an Array<double> that is where the location is stored.Any help, example, or direction would be wonderful!

November 03, 2019 at 07:00PM by maylortaylor
https://ift.tt/34j60tk
New post on /r/flutterdev subreddit:

I've just released abstract_dart v1.0.0. A collection of algebraic structures borrowed from abstract algebra with classes for Semigroups, Monoids, Groups and Fields.
https://ift.tt/2JLBlNA

November 03, 2019 at 06:47PM by modulovalue
https://ift.tt/34qfFOD
New post on /r/flutterdev subreddit:

Flutter Audio Application
Hi, wanted to create an offline audio player application. How should I go along with storing the audio. Secondly, any source code you have ?​Thank you

November 03, 2019 at 06:27PM by 123Spaceman123
https://ift.tt/36wn7K8
New post on Flutter Dev Google group:

Onesignal is stucked in flutter
I have a problem with my flutter application, My app is running normally but when i added onesignal notification plugin, i got the error below : What went wrong: A problem occurred configuring project ':firebase_admob'. > Could not resolve all artifacts for configuration ':firebase_admob:classp

November 03, 2019 at 08:16PM by Saad Alti
https://ift.tt/2NuZAAk
New post on /r/flutterdev subreddit:

flutter_hud: A clean and lightweight progress HUD to show a running asynchronous task for Flutter.
https://ift.tt/32e1JFW

November 03, 2019 at 11:07PM by Elixane
https://ift.tt/34lG7sK
New post on /r/flutterdev subreddit:

Built smoother app by running expensive code on isolates.
🚨 LibraryReleased a new version 2.0.0 of the executorservices library.A new SubscribableTask feature.This new feature allow you tu run a function or SubscribableTask subclass returning a stream on an isolate and the data, error, done events will be provided to you on your main isolate.Now you have all the tools necessary to make your flutter app run smoothly as possible.executorservices

November 04, 2019 at 01:00AM by bitsydarel
https://ift.tt/2NBnpGT
New post on /r/flutterdev subreddit:

Discussion : native Chrome support
Hello,Recently, Flutter Web has been announced and allows any Flutter app that doesn't rely on Method Channel to work on the web. I have tested it myself, and the performance is clearly not there, compared to a AOT compiled application for iOS / Android. Since Dart, is compiled to Javascript which is itself interpreted, this not very surprising.Since Google owns Chrome and Flutter, I was wondering if it could add Flutter / Dart support directly to Chrome. The app could either be served as Dart code and just-in-time compiled by the browser or directly as byte / machine code. I know this is clearly not compliant with web standards, but the goal of this post is to discuss what you would think about it.

November 03, 2019 at 11:56PM by Vardiak
https://ift.tt/32aVBP0
New post on /r/flutterdev subreddit:

[charts_flutter] Has anyone managed to get `selectionChanged` callback to work properly for gauge chart?
So i've been struggling with this bug for a few months now, have made several SO posts and opened issues on the charts Github repo to no response so this is my final straw attempt to try and find someone who may have a better idea of what I'm potentially doing wrong or whether this is a bug with the charts package.Using the gauge.dart file from the example here, i've just added a changedListener callback to get which segment the user has clicked.It works as expected only for 3 of the 4 segments, but clicking the last segment triggers an exception if it's tapped towards the end of it's region (depending on what random value it has been given from the example, if it's a relatively small segment then the whole segment give the same error).
static List<charts.Series<GaugeSegment, String>> _createRandomData() { final random = new Random(); final data = [ new GaugeSegment('Low', random.nextInt(100)), new GaugeSegment('Acceptable', random.nextInt(100)), new GaugeSegment('High', random.nextInt(100)), new GaugeSegment('Highly Unusual', random.nextInt(100)), ]; return [ new charts.Series<GaugeSegment, String>( id: 'Segments', domainFn: (GaugeSegment segment, _) => segment.segment, measureFn: (GaugeSegment segment, _) => segment.size, data: data, ) ]; } @override Widget build(BuildContext context) { return new charts.PieChart(seriesList, animate: animate, // added selectionModels to pass in _onSelectionChanged callback selectionModels: [ new charts.SelectionModelConfig( type: charts.SelectionModelType.info, changedListener: _onSelectionChanged, ) ], defaultRenderer: new charts.ArcRendererConfig( arcWidth: 30, startAngle: 4 / 5 * pi, arcLength: 7 / 5 * pi)); } _onSelectionChanged(charts.SelectionModel model) { final selectedDatum = model.selectedDatum; print("DATUM: ${selectedDatum.first.datum}"); if (selectedDatum.isNotEmpty) { print('IS_NOT_EMPTY'); } } 
Will give this exception
The following StateError was thrown while handling a gesture: Bad state: No element When the exception was thrown, this was the stack #0 List.first (dart:core-patch/array.dart:202:5) #1 GaugeChart._onSelectionChanged package:example/pie_chart/gauge.dart:89 #2 MutableSelectionModel.updateSelection.<anonymous closure> package:charts_common/…/selection_model/selection_model.dart:178 #3 List.forEach (dart:core-patch/growable_array.dart:283:8) #4 MutableSelectionModel.updateSelection package:charts_common/…/selection_model/selection_model.dart:178 ... Handler: "onTapUp" Recognizer: TapGestureRecognizer#1d1a0 debugOwner: GestureDetector state: possible won arena finalPosition: Offset(286.5, 261.0) finalLocalPosition: Offset(278.5, 153.0) sent tap down 
Here is a screenshot showing the click region that works for the final segment

November 04, 2019 at 04:20AM by Jizzy_Gillespie92
https://ift.tt/2PIZ5FO
New post on /r/flutterdev subreddit:

Help with Translation animation with CustomMultiChildLayout
I need to perform some animations and unless there's AnimatedContainer properties I can't animate them.I've tried using AnimatedPositioned but animating by providing constraints for bottom and right don't work.So how can I animate the children? A little more explanation of the layoutChild() would help too.

November 04, 2019 at 05:59AM by uncoded_decimal
https://ift.tt/2raTTQL
New post on Flutter Dev Google group:

Linking accounts with same email , firebase_auth, please help
My app needs google signin, facebook signin and email and password signin, im getting the ERROR_ACCOUNT_EXISTS_WITH_DIFFERENT_CREDENTIAL error. The docs says that i need to call fetchSignInMethodsForEmail , and then redirect to the current sign in method and link the accounts but i dont have

November 04, 2019 at 12:11PM by David De Jesus
https://ift.tt/2C9aA10
New post on /r/flutterdev subreddit:

getting Google Play warning message on google play console
We've detected that your app is using an old version of the Google Play Developer API. From December 1 2019, versions 1 and 2 of this API will no longer be available. Update to version 3 before this date. Note that this is not related to the AIDL/Billing Library deprecation​any idea to know which plugin causing this warn?

November 04, 2019 at 11:40AM by Kotaibaw
https://ift.tt/34rzm8J
New post on /r/flutterdev subreddit:

Flutter Tap Newsletter - Week 11
https://ift.tt/2PLxqEe

November 04, 2019 at 12:50PM by vensign
https://ift.tt/2WHybzi
New post on /r/flutterdev subreddit:

#27 GridView.count Flutter Widget
https://youtu.be/RYBEmi9jORE

November 04, 2019 at 03:23PM by systechdevelopers
https://ift.tt/2rcgBYL
New post on /r/flutterdev subreddit:

#26 MediaQuery Flutter Widget
https://youtu.be/nsQvDU4RcjM

November 04, 2019 at 03:21PM by systechdevelopers
https://ift.tt/2NcJ8pF
New post on Flutter Dev Google group:

Multiple widgets layout issues
Hi there, I am developing an app that pulls data from differtent json sources. One part pulls the data to create buttons that lead on to the next page to pull the relevant json data. I can get it to pull that data and display it in the buttons, where my issue start is displaying this along with

November 04, 2019 at 03:52PM by Jamie Sutherland
https://ift.tt/2NF3EOM