Flutter Heroes
25.6K subscribers
272 photos
2 videos
31.1K links
Download Telegram
Reddit: Making a Progress Button in Flutter
Checkout my new Article and GitHub repository about "Making a Progress Button in Flutter".https://github.com/ibhavikmakwana/ProgressButtonhttps://medium.com/@ibhavikmakwana/make-progress-button-in-flutter-d4e2d27bd1d7

Submitted June 05, 2018 at 04:17PM by ibhavikmakwana
via reddit https://ift.tt/2kP8Bq4
Reddit: Styling existing components
I was wondering how can I style existing components that is less complex than shown in Material Tutorial of Flutter

Submitted June 05, 2018 at 06:51PM by PrimeNexes
via reddit https://ift.tt/2HlJp3v
GGroup: TextWidget's text retrieval in TabBarView
Hi Team, In the code below : class _MyTabbedPageState extends State with SingleTickerProviderStateMixin { final List myTabs = [ new Tab(text: 'LEFT'), new Tab(text: 'RIGHT'), ]; TabController _tabController; @override void initState() { super.initState(); _tabControlle

Submitted June 05, 2018 at 08:16PM by Vinod Kumar Sharma
via Flutter Dev https://ift.tt/2M0oSF9
Reddit: Flutter — BoxDecoration Cheat Sheet
https://ift.tt/2JbUTfv

Submitted June 05, 2018 at 10:52PM by Purple_Pizzazz
via reddit https://ift.tt/2xOGeSo
Reddit: 3D Touch - iOS?
I've scoured through the internet but have found no indication of any sort of support for 3D touch support in Flutter. I would like to longpress + push an icon on the iOS homescreen to provide certain shortcuts to app features. Is there anyone that knows anything about this?

Submitted June 06, 2018 at 10:00AM by mycroftholmess
via reddit https://ift.tt/2Jdw8Qm
GGroup: Newbie to Android development trying to understand Flutter Widget Framework
import 'package:flutter/material.dart'; class MyAppBar extends StatelessWidget { MyAppBar({this.title}); // Fields in a Widget subclass are always marked "final". final Widget title; @override Widget build(BuildContext context) { return new Container( height: 56.0, // in

Submitted June 06, 2018 at 10:28AM by Ananta Kr. Roy
via Flutter Dev https://ift.tt/2JiHfYk
GGroup: Load firebase DocumentReference inside Stream
Hi Guys, My first time with flutter and i just wanna to load properties from a DocumentReference inside a stream list view. On firebase firestore i have this: "products": {"name": "Cars","createdBy": "users/YWH&@�HS&&IUYS" } On my Home widget i have a simple Stream to list the products:

Submitted June 06, 2018 at 11:36AM by Pablo Souza
via Flutter Dev https://ift.tt/2JCv73o
GGroup: Paypal Donate Button
I am working on an app that would need a Paypal donate button, so does anyone know how to create a Paypal donate button with Flutter.

Submitted June 06, 2018 at 07:30PM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2LrUYID
Reddit: NYC Meetup on 6/14: The Hamilton App
If you are in NYC, come hear from the team that built the flagship Flutter app — Hamilton: The Official App — will present their story of how they use Flutter to accomplish more with less code. They will discuss why they chose Flutter, their experience managing a high-scale Flutter app in the real world, and some of the benefits and issues they encountered along the way. Their engineers will be on hand to answer your questions about using Flutter for production apps.https://www.meetup.com/flutter-nyc/events/jrzptpyxjbsb/

Submitted June 06, 2018 at 07:36PM by daleclancy
via reddit https://ift.tt/2JgFcnt
GGroup: one time login activity
In my app there is a welcome page which has google sign in (able to sign in - automatic sign in no buttons to sign in), there are also *two RaisedButton* on clicking either any of them a Card will pop up, users has to fill some data. once the process is over i*t will navigate to Main Screen*. I

Submitted June 06, 2018 at 09:06PM by Koushik Chatterjee
via Flutter Dev https://ift.tt/2sHvy1S
Reddit: RxCommand 2.0.0 release
If you haven't heard about RxCommand checkout: https://pub.dartlang.org/packages/rx_command and https://www.burkharts.net/apps/blog/making-flutter-more-reactiveMaybe breaking change for your code: Till now the results Observable and the RxCommand itself behaved like a BehaviourSubjects. This can lead to problems when using with Flutter. From now on the default is PublishSubject. If you need BehaviourSubject behaviour, meaning every new listener gets the last received value, you can set emitsLastValueToNewSubscriptions = true when creating RxCommand.

Submitted June 06, 2018 at 10:26PM by escamoteur
via reddit https://ift.tt/2Ls0r25
GGroup: How to Read the size of a Widget in the Layout Phase and Use the size for another widget
I've been using flutter for about 3 Weeks there is one final thing I need to know how to do to build the rest of my application can anyone help please? https://ift.tt/2JhvwJc

Submitted June 06, 2018 at 11:29PM by Bryan Cancel
via Flutter Dev https://ift.tt/2xLjrXz
Reddit: [Question] Adding/removing/updating Image widget?
I have an old existing app that I'd like to port over to Flutter for practice. The premise is easy -- it does a network load of an image, which it displays full screen, then on some user event (I used to use "shake" but I'm fine using "swipe" now or even "pull down") I'd like to change the image to a new one.I have no idea how to do this. Do I remove the Image widget and create a new one? If so how do I add it back in the same place the old one was removed from? Can I just update a source attribute on the existing Image and tell it to go reload itself?I'm not new to mobile app development, I'm just trying to grok the "flutter way" to do it.

Submitted June 07, 2018 at 02:16AM by dmorin
via reddit https://ift.tt/2Hs2hxw
GGroup: [Breaking change] Increasing the hit detection size of material chips
Howdy, in https://ift.tt/2Jq3ffL I would like to increase the layout/hit detection size of the new material chips to a minimum of 48 x 48 dp. *What would change?* Visually the chips would look the same, but they would have some extra "padding" on the top and bottom.

Submitted June 07, 2018 at 02:46AM by Jonah Williams
via Flutter Dev https://ift.tt/2M45mrm
Reddit: One drawer to move between screens?
I was looking at the Drawer example:https://flutter.io/cookbook/design/drawer/I noticed they placed the Drawer inside a Scaffold inside the screen.I would like to have a Drawer with ListTiles that link to different screens (not unlike in the Hamilton app)I was wondering what the best way to achieve this would be.

Submitted June 07, 2018 at 02:31AM by Fathomx1
via reddit https://ift.tt/2M5OuR5
Reddit: One drawer to move between screens?
I was looking at the Drawer example:https://flutter.io/cookbook/design/drawer/I noticed they placed the Drawer inside a Scaffold inside the screen.I would like to have a Drawer with ListTiles that link to different screens (not unlike in the Hamilton app)I was wondering what the best way to achieve this would be.

Submitted June 07, 2018 at 02:31AM by Fathomx1
via reddit https://ift.tt/2M5OuR5