Flutter Heroes
25.9K subscribers
272 photos
2 videos
31.1K links
Download Telegram
Reddit: Flutter | Jumping dots progress indicator
https://ift.tt/2Me0PpS

Submitted August 11, 2018 at 10:17PM by Elixane
via reddit https://ift.tt/2KLLhUD
GGroup: Video Storage
I need a way for one admin upload a video and all of the other users of the app to have access to that video even if they are offline. If they need to be online to receive the video, that should be fine, but once they receive the video, if they go offline, they should be able to view it. Please

Submitted August 12, 2018 at 05:13AM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2B0KOi3
Reddit: I just published a package that emulates the red Instagram notification popup.
I made a package called SpeechBubble that emulates the red Instagram notification popup.Instagram notification popupsCheck it out on Github! https://github.com/NilsBacke/PHSpeechBubble

Submitted August 12, 2018 at 04:42AM by NilsBacke
via reddit https://ift.tt/2w25CQj
GGroup: *Educators* and Devs: Important points Re: Dart VM & minimum supported targets
I'm assembling various presentations and in person workshops and a friend who is helping me made an interesting point regarding minimum supported API versions. It's crucial for myself and other presenters to ensure we're putting out good information, and sometimes things are a bit confusing, so

Submitted August 12, 2018 at 03:14PM by Scott Stoll
via Flutter Dev https://ift.tt/2w0XHTj
GGroup: Necessary gradle knowledge needed for Flutter development?
Although Flutter makes development for mobile application more effective, I found that I'm often challenged by errors related to gradle build process. I wonder what would be the level of gradle knowledge would be helpful or sufficient for Flutter development with Android Studio, which uses

Submitted August 12, 2018 at 05:45PM by Yu Shen
via Flutter Dev https://ift.tt/2MlNrPL
Reddit: Package for showing badges
I just published a package that will help to show badges on icon with animationDemo: https://raw.githubusercontent.com/yadaniil/flutter_badges/master/example.gifhttps://github.com/YaDaniil/flutter_badges https://pub.dartlang.org/packages/badges

Submitted August 12, 2018 at 05:55PM by YaDaniil
via reddit https://ift.tt/2vDxcUz
GGroup: Swapping between Images in collage frame GridView
Can someone suggest any approach how to drag, swap and auto Fit images between frames in collage GridView. Thanks in advance

Submitted August 13, 2018 at 08:39AM by rakesh lorentz
via Flutter Dev https://ift.tt/2vZQbrW
Reddit: Avoid repetition in BLoCs and RxDart
Hi guys, hopefully I can make myself clear.I watched some videos and studies some tutorials and ultimately I found this way to have some widgets to input data to the bloc (valueSetting) and some others to get this data (value).What I am asking is if there is a better way (there has to be..). I want to avoid the need to have 4 variables for just 1 real value shared between widgets.Thanks!
import 'dart:async'; import 'package:rxdart/subjects.dart'; class BlocExample { final _valueSettingController = StreamController<bool>(); // object use by widget to push data Sink<bool> get valueSetting => _valueSettingController.sink; final _value = BehaviorSubject<bool>(seedValue: false); // object used by widget to get data Stream<bool> get value => _value.stream; BlocExample() { _valueSettingController.stream.listen(_value.add); } void dispose() { _value.close(); _valueSettingController.close(); } } 


Submitted August 13, 2018 at 05:07PM by vmihalachi
via reddit https://ift.tt/2w7hvEN
Reddit: How do you handle multiple Blocs in a single application?
I'm building a medium sized app in Flutter, and I've gotten to the point where it's made sense to break my Bloc class into multiple classes, but I'm wondering how people go about structuring this. My first thought is a single BlocProvider class with references to things like authBloc, whateverBloc, etc. Is there a reason to have a separate provider for each bloc? Can Blocs reference one another, or does that break the pattern? (for instance, I could see multiple blocs want to know the logged in user from AuthBloc, but I could alternatively give them a Sink<User> element, and have the screen connect Stream<User> authBloc.activeUser to that Sink to keep the blocs isolated.Most of the tutorials I've found here and elsewhere haven't approached this level of complexity, and have been mostly single page applications. Links to more complex examples are appreciated.

Submitted August 13, 2018 at 04:38PM by zachtib
via reddit https://ift.tt/2B83tIG
GGroup: Flutter/Dart breaking change proposal: super mixin declarations
*TLDR: The flutter framework uses an early experimental extension of Dart mixins which allow calls to super. In Dart 2.1, we propose < https://github.com/dart-lang/language/blob/master/working/0006.%20Super-invocations%20in%20mixins/0007.%20Mixin%20declarations/lrhn-strawman.md> to make this

Submitted August 13, 2018 at 08:10PM by Leaf Petersen
via Flutter Dev https://ift.tt/2OxznQu
Reddit: My first Flutter app - Earthquake Data Mapper
I recently just published my first real flutter app on the Google Play Store.It is an Earthquake Data Mapper - it allows you to keep track of current earthquakes. You can see a map of all of the earthquakes that happened today around the globe, and even see earthquakes that occurred near you.Galaxy S9 edge markupAny feedback is greatly appreciated - on the app itself, the google play store page, the source code, or the documentation. Please let me know what you think. Thanks!Download link: https://play.google.com/store/apps/details?id=com.plushundred.earthquakedatamapperGithub link: https://github.com/NilsBacke/Earthquake-Data-Mapper

Submitted August 13, 2018 at 07:50PM by NilsBacke
via reddit https://ift.tt/2MgS6mf
Reddit: I made a simple app to draw a circle in either radians or degrees based off user input. It also functions as an example for CustomPaint(er)
https://ift.tt/2MFKW7T

Submitted August 13, 2018 at 09:12PM by conman__1040
via reddit https://ift.tt/2MmYwQt
Reddit: permission_handler | Permission plugin for Flutter. Provides a cross-platform (iOS, Android) API to request and check permissions.
https://ift.tt/2nzjde8

Submitted August 13, 2018 at 11:14PM by Purple_Pizzazz
via reddit https://ift.tt/2KRqrDH
Reddit: If you're using the BLoC pattern what do you think about it?
We choose architectures to help us developer our applications as efficiently as possible with the best possible results, do you find the BLoC pattern helps you to achieve this?

Submitted August 14, 2018 at 09:11AM by hillel369
via reddit https://ift.tt/2MnlTK2