GGroup: Dropdownbutton
My dropdownbutton has 100 items in it, so when I open it, it takes up the whole screen. Is it possible to decrease how much the dropdownbutton expands without changing the number of items in it?
Submitted June 24, 2018 at 04:21PM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2tzXRjk
My dropdownbutton has 100 items in it, so when I open it, it takes up the whole screen. Is it possible to decrease how much the dropdownbutton expands without changing the number of items in it?
Submitted June 24, 2018 at 04:21PM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2tzXRjk
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
Reddit: Flutter UI Kit Phase 1 (Early Version) now available on Play store
https://ift.tt/2MgpEgz
Submitted June 24, 2018 at 04:24PM by imthepk
via reddit https://ift.tt/2MUQ6NZ
https://ift.tt/2MgpEgz
Submitted June 24, 2018 at 04:24PM by imthepk
via reddit https://ift.tt/2MUQ6NZ
Google Play
Flutter UIKit - Apps on Google Play
Flutter UIKit is a collection of real-world app UIs built with flutter. It consists of many templates which you can play with. This app shows that how amazing UI can be created using Flutter.Here are some of the resources you would like to see for learning…
GGroup: Credit Card Payments
Does anyone know how to create a form on an app that will charge the user once they fill it out?
Submitted June 24, 2018 at 04:56PM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2lvDBf6
Does anyone know how to create a form on an app that will charge the user once they fill it out?
Submitted June 24, 2018 at 04:56PM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2lvDBf6
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
Reddit: Automatically search for Flutter documentation from any web page
https://ift.tt/2InCrvr
Submitted June 24, 2018 at 06:27PM by jmolins
via reddit https://ift.tt/2KiGFcx
https://ift.tt/2InCrvr
Submitted June 24, 2018 at 06:27PM by jmolins
via reddit https://ift.tt/2KiGFcx
Medium
Automatically search for Flutter documentation from any web page
When I read Flutter blog posts, twitter updates o other type of Flutter content, I normally want to learn more about the widgets and…
GGroup: I made a state management library for Flutter, and would love some feedback!
Hi everyone! I'm super new to Flutter, but really wanted to contribute since I feel this project has a lot of potential. I didn't really like the way ScopedModel and FlutterRedux make you have one huge state object, so I figured I'd make something more akin to Angular's DI. Here's the repo.
Submitted June 24, 2018 at 06:36PM by Dusan Kovacevic
via Flutter Dev https://ift.tt/2MTd9bP
Hi everyone! I'm super new to Flutter, but really wanted to contribute since I feel this project has a lot of potential. I didn't really like the way ScopedModel and FlutterRedux make you have one huge state object, so I figured I'd make something more akin to Angular's DI. Here's the repo.
Submitted June 24, 2018 at 06:36PM by Dusan Kovacevic
via Flutter Dev https://ift.tt/2MTd9bP
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
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
https://ift.tt/2twpjj1
Submitted June 24, 2018 at 06:45PM by dkovacevic15
via reddit https://ift.tt/2yCIkF9
GitLab
dkovacevic15 / basal
A state management library for Flutter.
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
https://ift.tt/2MSKvrm
Submitted June 24, 2018 at 09:37PM by Elixane
via reddit https://ift.tt/2yDPQjn
Dart Packages
pref_dessert | Flutter Package
pref_dessert Flutter and Dart package - Package that allows you persist objects easily.
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
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
Can we say that
Submitted June 24, 2018 at 10:22PM by TheOSM
via reddit https://ift.tt/2tyDbrV
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
reddit
r/FlutterDev - Flutter Scoped Model : Accessing Top Level Models From Bottom Tree Widget Elements When We Have Other Models In…
1 votes and 0 so far on reddit
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
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
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
GitHub
GitHub - iampawan/Flutter-UI-Kit: Flutter app for collection of UI in a UIKit
Flutter app for collection of UI in a UIKit. Contribute to iampawan/Flutter-UI-Kit development by creating an account on GitHub.
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
https://ift.tt/2MkXtND
Submitted June 25, 2018 at 08:43AM by Purple_Pizzazz
via reddit https://ift.tt/2KiTekT
Dart Packages
flutter_state | Flutter Package
flutter_state Flutter and Dart package - 🦋 A lightweight framework for stateless UI in Flutter, and an alternative to Redux.
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
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
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
r/FlutterDev - Build a googlefit/healthkit plugin
1 votes and 0 so far on reddit
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
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
reddit
r/FlutterDev - Accessing IOS wallet data
1 votes and 0 so far on reddit
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
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
YouTube
Flutter Redux Starter/CRUD Generator
https://github.com/hillelcoren/flutter-redux-starter https://github.com/invoiceninja/flutter-mobile
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
Reddit: Flutter Redux Starter now auto-generates the CRUD code
https://www.youtube.com/watch?v=J_8IwBnhZck
Submitted June 25, 2018 at 02:47PM by hillel369
via reddit https://ift.tt/2K8IxFF
https://www.youtube.com/watch?v=J_8IwBnhZck
Submitted June 25, 2018 at 02:47PM by hillel369
via reddit https://ift.tt/2K8IxFF
YouTube
Flutter Redux Starter/CRUD Generator
https://github.com/hillelcoren/flutter-redux-starter https://github.com/invoiceninja/flutter-mobile
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
https://ift.tt/2tCUybj
Submitted June 25, 2018 at 05:59PM by Purple_Pizzazz
via reddit https://ift.tt/2K5BVrv
Dart Packages
objectdb | Flutter Package
objectdb Flutter and Dart package - Flutter NoSQL Database
Reddit: Flutter from scratch - Slivers
https://ift.tt/2IqD3QZ
Submitted June 25, 2018 at 05:33PM by rajayogan27
via reddit https://ift.tt/2K5BUnr
https://ift.tt/2IqD3QZ
Submitted June 25, 2018 at 05:33PM by rajayogan27
via reddit https://ift.tt/2K5BUnr
T-Pub :)
Flutter – Slivers
Hi Friends, Hope you are all well. I know it’s been a long time since I posted. I was working on a course for you guys and hence I din’t get time to post new stuff. So here’s my c…