Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
Reddit: I made a state management library for Flutter, and would love to hear some feedback on it!
https://ift.tt/2twpjj1

Submitted June 24, 2018 at 06:45PM by dkovacevic15
via reddit https://ift.tt/2yCIkF9
Reddit: pref_dessert | Package that allows you persist objects as shared preferences easily.
https://ift.tt/2MSKvrm

Submitted June 24, 2018 at 09:37PM by Elixane
via reddit https://ift.tt/2yDPQjn
GGroup: StreamBuilder of Firebase rebuild when pop from another widget...why?
Hi , i have a class (CLASS A) that use StreamBuilder for listen change of document, if i i click a Hero Widget (CLASS A) that animate to new material page route (CLASS B) and pop back., i see that the widget (CLASS A) reload like first time (i see the placeholder before loading of image for

Submitted June 24, 2018 at 10:18PM by juanito21
via Flutter Dev https://ift.tt/2todjA0
Reddit: Flutter Scoped Model : Accessing Top Level Models From Bottom Tree Widget Elements When We Have Other Models In The Middle Of The Tree.
Hi, I have been trying to use the scoped model pattern in my non trivial Flutter app for state management and then hit the wall when reaching some non trivial cases.I wanted to have an app global model to be accessible everywhere in all of app widgets.
The problem I noticed is if we have another scoped model used in the middle of the tree, bottom widgets are not able to access the most top level models ( Plz Correct if something is wrong on my side ).In a Flutter widget tree I'd like to know whether a page/widget pushed with the Navigator is a child of the origin widget.
For instance
onTap: () {
Navigator.push(
context,
new MaterialPageRoute(
builder: (context) =>
UserCartScreen(cart: Cart),
),
);
},
),
Can we say that UserCartScreen is a child of the gesture detector in the widget tree ? This is important to know since I am using the scoped model pattern.

Submitted June 24, 2018 at 10:22PM by TheOSM
via reddit https://ift.tt/2tyDbrV
GGroup: How to change position of Bezier Curve from bottom to top
Hello, please, does anyone know how I can achieve the below look with flutter? < https://lh3.googleusercontent.com/-oXfp3qvSbTM/WzBe1rmWkhI/AAAAAAAAASY/AI9QC1q9o-MXY7Pz-s5k_A-0n1TBfaGWACLcBGAs/s1600/Login%2BPage.png > I have been able to achieve the below one but I need the curve to be at the

Submitted June 25, 2018 at 05:21AM by Michael Aworoghene
via Flutter Dev https://ift.tt/2yDkpW9
Reddit: Flutter UI Kit is now Open Sourced ❤️
I'm happy to announce that Flutter UI Kit is now Open Sourced ❤️. Check it out - https://github.com/iampawan/Flutter-UI-Kit. Don't forget to star the repo and share with your friends. Keep fluttering

Submitted June 25, 2018 at 05:39AM by imthepk
via reddit https://ift.tt/2tshiLJ
Reddit: flutter_state | A lightweight framework for stateless UI in Flutter, and an alternative to Redux.
https://ift.tt/2MkXtND

Submitted June 25, 2018 at 08:43AM by Purple_Pizzazz
via reddit https://ift.tt/2KiTekT
GGroup: Make focused element visible when keyboard appears
Hello , If the form has more TextFields then how to make the last text filed visible when the keyboard appears.

Submitted June 25, 2018 at 02:03PM by sumeet kasar
via Flutter Dev https://ift.tt/2IorHNj
Reddit: Build a googlefit/healthkit plugin
Hello everyone!I'm not sure if this is the right place to post this, but I am interested in sponsoring the development of an opensource(MIT) plugin for flutter that abstracts over googlefit/healthkit.The project should atleast cover read/write interfaces for:Steps dataActivity dataBasic health information (Height, weight)Feel free to pm here or drop me an email at subra [at] holmusk [.] com with your proposal and rates.This is my first time attempting something like this so please let me know if anything is unclear and I'll do my best to clarify.

Submitted June 25, 2018 at 02:43PM by arbus
via reddit https://ift.tt/2K5VyzQ
Reddit: Accessing IOS wallet data
Hi,Is is possible with Flutter/Dart to access data from the wallet on IOS what I mean by "data" is the amount and name for the last transaction for contact less payments, i.e. £3.1 Starbucks

Submitted June 25, 2018 at 02:27PM by caft99
via reddit https://ift.tt/2IphJev
GGroup: CRUD generator for Redux apps
Hope it's ok posting this here... I just wanted to share a new Redux CRUD generator we're working on. https://www.youtube.com/watch?v=J_8IwBnhZck

Submitted June 25, 2018 at 02:49PM by Hillel Coren
via Flutter Dev https://ift.tt/2IqErTl
GGroup: Problem with Navigator.pop() flutter
Hello! My application take 3 seconds to respond when I call Navigator.pop() in mobiles. In virtual emulator, there is any problem. Does someone know the possible reasons ?

Submitted June 25, 2018 at 03:14PM by Mouhamed Tall
via Flutter Dev https://ift.tt/2ttRe2K
Reddit: objectdb | Persistent embedded NoSQL database for Dart and Flutter. 100% Dart.
https://ift.tt/2tCUybj

Submitted June 25, 2018 at 05:59PM by Purple_Pizzazz
via reddit https://ift.tt/2K5BVrv
GGroup: Video_Player 0.6.1 Exoplayer Error
I thought I would play with the new video_player 0.6.1 in Flutter since it was mentioned in the Release Candidate article that it had been improved upon. First I upgraded Flutter and my Dart Code plugin for VS Code. I opened up Android Studio and ran all the updates it told me to. I then ran

Submitted June 25, 2018 at 09:01PM by Brian Duffy
via Flutter Dev https://ift.tt/2K7qZtq
Reddit: Flutter host app communication with Android Widget / iOS Extensions ( A player app use case )
Hi there, How can someone go about implementing a simple app in Flutter where the host and widgets communicate, the most typical example is a player widget with pause/play button for music player application.I heard Flutter can't draw out of its app boundaries and those need to be written natively but still I'd like to know how can that be achieved or if there are existing plugins for it.These are the types of examples that are missing in the cookbook and should be really helpful for everyone coming in the Flutter world beyond hello world.

Submitted June 25, 2018 at 11:45PM by TheOSM
via reddit https://ift.tt/2MZ4Hbe
GGroup: HTTP Request
Every time I make an HTTP request in flutter, it states this: E/flutter (13360): [ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception: E/flutter (13360): MissingPluginException(No implementation found for method canLaunch on channel plugins.flutter.io/url_launcher) E/flutter

Submitted June 26, 2018 at 01:43AM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2tC4Msk
Reddit: [Question] How can I access multiple streams inside a StreamBuilder?
I've tried to make a new StreamBuilder inside the builder of my initial stream, but this obviously doesn't work because StreamBuilder needs to return a widget.Basically, I'm accessing a root Collection in Firebase. This collection contains two documents, and I need data from each of them, as I am building a DataTable that contains information from both paths.

Submitted June 26, 2018 at 02:49AM by GroovinChip
via reddit https://ift.tt/2MqzRqW
GGroup: App Relaunching
Every time I unplug my phone from my laptop and plug it in later and run my flutter application, it resets the app to how it was some time ago and not how it currently is, so is this a bug with flutter or do I need to change a setting in order for my phone to get the latest version of my flutter

Submitted June 26, 2018 at 05:27AM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2tstCfa