Reddit: shimmer | An easy way to add a shimmer effect in Flutter
https://ift.tt/2M1TshD
Submitted June 06, 2018 at 02:06PM by Purple_Pizzazz
via reddit https://ift.tt/2JdhE2E
https://ift.tt/2M1TshD
Submitted June 06, 2018 at 02:06PM by Purple_Pizzazz
via reddit https://ift.tt/2JdhE2E
Dart Packages
shimmer | Flutter Package
shimmer Flutter and Dart package - A package provides an easy way to add shimmer effect in Flutter project
Reddit: Why you should smoke-test your sample code, and how to do it in Flutter
https://ift.tt/2JiMcQV
Submitted June 06, 2018 at 06:32PM by KingBaal
via reddit https://ift.tt/2Hq9BtF
https://ift.tt/2JiMcQV
Submitted June 06, 2018 at 06:32PM by KingBaal
via reddit https://ift.tt/2Hq9BtF
Medium
Why you should smoke-test your sample code, and how to do it in Flutter
[ If you’re already convinced that you want to smoke-test your Flutter samples, you can skip to “Smoke-testing Flutter” below.
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
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
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: 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
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
Meetup
The Hamilton App: Building a large scale Flutter app in the real world
Our inaugural meetup event! 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 di
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
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
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: 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
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
Dart Packages
rx_command | Flutter Package
Reactive event handler wrapper class inspired by ReactiveUI.
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
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
Stack Overflow
How to Read the size of a Widget in the Layout Phase and Use the size for another widget in the Build Phase Before drawFrame()
The size of one of my widgets depends on the size of another one of my widgets (in a non standard way)
so what I am doing at the moment is using the Rect Getter Plugin and building the Widget Tree
so what I am doing at the moment is using the Rect Getter Plugin and building the Widget Tree
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
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
reddit
r/FlutterDev - [Question] Adding/removing/updating Image widget?
1 votes and 0 so far on reddit
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
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
GitHub
Improve chip semantics by jonahwilliams · Pull Request #17927 · flutter/flutter
Initial work towards chip accessibility (#16964).
Ensure that a chip is always focusable.
Ensure that the enabled/checked state is communicated.
Allows delete to be activated by double tapping an ...
Ensure that a chip is always focusable.
Ensure that the enabled/checked state is communicated.
Allows delete to be activated by double tapping an ...
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
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
flutter.io
Add a Drawer to a screen
In apps that employ Material Design, there are two primary options fornavigation: tabs and drawers. When there is insufficient space to support tabs, Drawers provide a handy alternative.In Flutter, we can use the [`Drawer`](https://docs.flutter.io/flutte…
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
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
flutter.io
Add a Drawer to a screen
In apps that employ Material Design, there are two primary options fornavigation: tabs and drawers. When there is insufficient space to support tabs, Drawers provide a handy alternative.In Flutter, we can use the [`Drawer`](https://docs.flutter.io/flutte…
Reddit: Flutter Toast Plugin
https://ift.tt/2LfJlol
Submitted June 07, 2018 at 05:16AM by imthepk
via reddit https://ift.tt/2LuIS1k
https://ift.tt/2LfJlol
Submitted June 07, 2018 at 05:16AM by imthepk
via reddit https://ift.tt/2LuIS1k
Dart Packages
flutter_toast_pk | Flutter Package
flutter_toast_pk Flutter and Dart package - A new Flutter plugin for showing toast in android and ios.
Reddit: Widget and JSON File Templates for Flutter
https://ift.tt/2Jl1wwo
Submitted June 07, 2018 at 07:28AM by Elixane
via reddit https://ift.tt/2LunnOe
https://ift.tt/2Jl1wwo
Submitted June 07, 2018 at 07:28AM by Elixane
via reddit https://ift.tt/2LunnOe
Medium
Widget and JSON File Templates for Flutter
Flutter is a great framework for building cross-platform mobile apps. Over the past few weeks I’ve been transmuting my existing Android…
Reddit: waila | An AI powered Flutter app
https://ift.tt/2JkufkA
Submitted June 07, 2018 at 11:50AM by Purple_Pizzazz
via reddit https://ift.tt/2LrQaDg
https://ift.tt/2JkufkA
Submitted June 07, 2018 at 11:50AM by Purple_Pizzazz
via reddit https://ift.tt/2LrQaDg
GitHub
AshKetchumza/waila
Contribute to waila development by creating an account on GitHub.
GGroup: Getting issue while fetching data from networ using post request.
Please help me. final url="https://ift.tt/2sBAmqE"; post(url, body: { "MobileNo": "9291570524", "Password": "Pickc@123" }, headers: { "Content-Type":"application/json" },).then((dynamic res) { print(res.toString()); if (res["error"]) throw new
Submitted June 07, 2018 at 02:14PM by Kethu Satya
via Flutter Dev https://ift.tt/2JplB0c
Please help me. final url="https://ift.tt/2sBAmqE"; post(url, body: { "MobileNo": "9291570524", "Password": "Pickc@123" }, headers: { "Content-Type":"application/json" },).then((dynamic res) { print(res.toString()); if (res["error"]) throw new
Submitted June 07, 2018 at 02:14PM by Kethu Satya
via Flutter Dev https://ift.tt/2JplB0c
GGroup: Network related
Response of previously posted one. Is there any wrong with my code.please help me if know the solution
Submitted June 07, 2018 at 02:18PM by Kethu Satya
via Flutter Dev https://ift.tt/2Ji5ZzV
Response of previously posted one. Is there any wrong with my code.please help me if know the solution
Submitted June 07, 2018 at 02:18PM by Kethu Satya
via Flutter Dev https://ift.tt/2Ji5ZzV
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: device_calendar | Flutter plugin for modifying calendars on the user's device.
https://ift.tt/2sDWP6h
Submitted June 07, 2018 at 02:08PM by JaapVermeulen
via reddit https://ift.tt/2Jjgin0
https://ift.tt/2sDWP6h
Submitted June 07, 2018 at 02:08PM by JaapVermeulen
via reddit https://ift.tt/2Jjgin0
Dart Packages
device_calendar | Flutter Package
device_calendar Flutter and Dart package - A cross platform plugin for modifying calendars on the user's device.
Reddit: Flutter Games - A Sample Flutter App For Renting and Buying Games
https://ift.tt/2HsjVl4
Submitted June 07, 2018 at 05:39PM by gamelaunchplatform
via reddit https://ift.tt/2JjauKu
https://ift.tt/2HsjVl4
Submitted June 07, 2018 at 05:39PM by gamelaunchplatform
via reddit https://ift.tt/2JjauKu
GitHub
searchy2/FlutterGames
FlutterGames - Flutter app for purchasing and renting games.
GGroup: Using a Material TabBar with CupertinoTabScaffold
Hello! I'm new to this group as a Googler friend of mine gave me a link when I asked if he knew much about flutter. I want to use the TabBar from material as the tabbar within a cupertino tab scaffold. Another option is to move the CupertinoTabScaffold's view to be the tabview from Material's
Submitted June 07, 2018 at 06:43PM by adr...@adriancmurray.com
via Flutter Dev https://ift.tt/2xTDnri
Hello! I'm new to this group as a Googler friend of mine gave me a link when I asked if he knew much about flutter. I want to use the TabBar from material as the tabbar within a cupertino tab scaffold. Another option is to move the CupertinoTabScaffold's view to be the tabview from Material's
Submitted June 07, 2018 at 06:43PM by adr...@adriancmurray.com
via Flutter Dev https://ift.tt/2xTDnri
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.
GGroup: Is it possible to manipulate, remove, change, update EXIF data of an image in flutter app?
Is it possible to manipulate, remove, change, update EXIF data of an image in flutter app?
Submitted June 07, 2018 at 08:18PM by Michael Tawiah Sowah
via Flutter Dev https://ift.tt/2sDX9SG
Is it possible to manipulate, remove, change, update EXIF data of an image in flutter app?
Submitted June 07, 2018 at 08:18PM by Michael Tawiah Sowah
via Flutter Dev https://ift.tt/2sDX9SG
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.