GGroup: FCM notifications don't work when my app is on the foreground
When my app is running and I am actively using it on the foreground, if I try to send a notification from the firebase console, the device I am testing it on doesn't receive it. Can anyone help me with this issue?
Submitted August 04, 2018 at 04:49AM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2LRtEbx
When my app is running and I am actively using it on the foreground, if I try to send a notification from the firebase console, the device I am testing it on doesn't receive it. Can anyone help me with this issue?
Submitted August 04, 2018 at 04:49AM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2LRtEbx
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: Using a map's keys & values as keyword arguments to a function
In Python, I'd do this
Submitted August 04, 2018 at 05:01AM by move_machine
via reddit https://ift.tt/2ncRK1v
In Python, I'd do this
def some_function(arg1, arg2): pass args_vals = {'arg1': 'some val', 'arg2': 'another val'} some_function(**args_vals)Say I want to do the same with this Dart function
void someFunction({int arg1, int arg2}) {} Map<String, int> argsVals = {'arg1': 1, 'arg2': 2}; // apply argsVals to someFunction as keyword argumentsAny thoughts?
Submitted August 04, 2018 at 05:01AM by move_machine
via reddit https://ift.tt/2ncRK1v
reddit
r/FlutterDev - Using a map's keys & values as keyword arguments to a function
2 votes and 0 comments so far on Reddit
Reddit: Using a map's keys & values as keyword arguments to a function
In Python, I'd do this
Submitted August 04, 2018 at 05:01AM by move_machine
via reddit https://ift.tt/2ncRK1v
In Python, I'd do this
def some_function(arg1, arg2): pass args_vals = {'arg1': 'some val', 'arg2': 'another val'} some_function(**args_vals)Say I want to do the same with this Dart function
void someFunction({int arg1, int arg2}) {} Map<String, int> argsVals = {'arg1': 1, 'arg2': 2}; // apply argsVals to someFunction as keyword argumentsAny thoughts?
Submitted August 04, 2018 at 05:01AM by move_machine
via reddit https://ift.tt/2ncRK1v
reddit
r/FlutterDev - Using a map's keys & values as keyword arguments to a function
2 votes and 0 comments so far on Reddit
Reddit: Why is Firebase necessary for Push Notifications?
What I'm going for is for my app to be able to send a notification everyday at a specific time and nothing more. Why is firebase necessary for this? Granted I haven't checked out too many examples, but those I've seen seem centered around situations where push notifications are triggered by network events ( one user's action on their end of the app triggers a notification on another user's phone). I can see why those situations might require firebase, but all I need are scheduled notifications. I did some digging and it looks like there are some plugins/libs for this but what I want to know is why those are necessary and whether there are plans to make local notifications part of the core lib sooner or later?
Submitted August 04, 2018 at 12:02PM by katezhina
via reddit https://ift.tt/2AIyZwI
What I'm going for is for my app to be able to send a notification everyday at a specific time and nothing more. Why is firebase necessary for this? Granted I haven't checked out too many examples, but those I've seen seem centered around situations where push notifications are triggered by network events ( one user's action on their end of the app triggers a notification on another user's phone). I can see why those situations might require firebase, but all I need are scheduled notifications. I did some digging and it looks like there are some plugins/libs for this but what I want to know is why those are necessary and whether there are plans to make local notifications part of the core lib sooner or later?
Submitted August 04, 2018 at 12:02PM by katezhina
via reddit https://ift.tt/2AIyZwI
reddit
r/FlutterDev - Why is Firebase necessary for Push Notifications?
2 votes and 3 comments so far on Reddit
Reddit: Any legal issues with Flutter license?
I followed the guide at https://flutter.io/faq/#how-can-i-determine-the-licenses-my-flutter-application-needs-to-show and used showLicensePage to add the automatically generated license page.I noticed in the license list that Flutter generates there is an LGPL license from a package called gif from Skia.A quick search shows some that note LGPL isn't really compatible with the iOS app store (example).Should I be worried about using Flutter in commercial apps since it uses LGPL code?
Submitted August 04, 2018 at 01:25PM by dbltro
via reddit https://ift.tt/2vk4jN0
I followed the guide at https://flutter.io/faq/#how-can-i-determine-the-licenses-my-flutter-application-needs-to-show and used showLicensePage to add the automatically generated license page.I noticed in the license list that Flutter generates there is an LGPL license from a package called gif from Skia.A quick search shows some that note LGPL isn't really compatible with the iOS app store (example).Should I be worried about using Flutter in commercial apps since it uses LGPL code?
Submitted August 04, 2018 at 01:25PM by dbltro
via reddit https://ift.tt/2vk4jN0
docs.flutter.dev
FAQ
Frequently asked questions and answers about Flutter.
Reddit: Flutter minimal APK size just went down from 6.7 MB to 4.7 MB !
https://ift.tt/2vkOC8k
Submitted August 04, 2018 at 01:54PM by catpone
via reddit https://ift.tt/2AG1RWx
https://ift.tt/2vkOC8k
Submitted August 04, 2018 at 01:54PM by catpone
via reddit https://ift.tt/2AG1RWx
GitHub
Reduce --release apk and ipa sizes #16833
We've had a bunch of issues related to this, most directly #12456 as another. Attempting to create an issue which we can drive to action. Android Instant Apps #7614 will require a < 4MB initial .apk size (which doesn't have to include th...
Reddit: How to send a screenshot attachment in Mail using Flutter
https://ift.tt/2ACA8G5
Submitted August 04, 2018 at 05:11PM by Elixane
via reddit https://ift.tt/2vfhBL0
https://ift.tt/2ACA8G5
Submitted August 04, 2018 at 05:11PM by Elixane
via reddit https://ift.tt/2vfhBL0
Medium
How to send a screenshot attachment in Mail using Flutter
In enterprise mobile app, reporting the errors on the screen and sending this as an email is a common requirement. There are many way to…
Reddit: Most difficult part with Flutter
Hello everyone!I want to know what you all felt was the most difficult when learning Flutter. For me, the hardest part was layout and how to properly place widgets in the place I wanted to. I was so used to Relative layout in Android/Java development that Column and Row was a bit awkward in the beginning.This doesn't have to be tasks you were having problems with in the beginning but could also be things you find difficult now. Would love to hear everyones answers!
Submitted August 04, 2018 at 07:45PM by RobertBrunhage
via reddit https://ift.tt/2naZMrP
Hello everyone!I want to know what you all felt was the most difficult when learning Flutter. For me, the hardest part was layout and how to properly place widgets in the place I wanted to. I was so used to Relative layout in Android/Java development that Column and Row was a bit awkward in the beginning.This doesn't have to be tasks you were having problems with in the beginning but could also be things you find difficult now. Would love to hear everyones answers!
Submitted August 04, 2018 at 07:45PM by RobertBrunhage
via reddit https://ift.tt/2naZMrP
reddit
r/FlutterDev - Most difficult part with Flutter
3 votes and 1 comment so far on Reddit
Reddit: Tutorial: Handling State in Flutter with ReduRx
https://ift.tt/2KsD2wH
Submitted August 04, 2018 at 08:37PM by leocavalcantee
via reddit https://ift.tt/2M41ZDE
https://ift.tt/2KsD2wH
Submitted August 04, 2018 at 08:37PM by leocavalcantee
via reddit https://ift.tt/2M41ZDE
Medium
Tutorial: Handling State in Flutter with ReduRx.
One the of the hardest things in development - IMHO - after naming, is handling State, at least handling it reactively without overs…
Reddit: Detailed article describing how to create a Range Slider plugin for Flutter
Article: https://www.didierboelens.com/2018/07/range-slider/Plugin: https://pub.dartlang.org/packages/flutter_range_slider
Submitted August 04, 2018 at 10:08PM by Purple_Pizzazz
via reddit https://ift.tt/2vlA2gQ
Article: https://www.didierboelens.com/2018/07/range-slider/Plugin: https://pub.dartlang.org/packages/flutter_range_slider
Submitted August 04, 2018 at 10:08PM by Purple_Pizzazz
via reddit https://ift.tt/2vlA2gQ
Didier Boelens
Didier Boelens - Flutter
Flutter - Build a 2-thumb Range Slider, step by step…
Difficulty: Advanced
Difficulty: Advanced
Reddit: interesting web page to Flutter learning
https://ift.tt/2AJDV4s
Submitted August 05, 2018 at 12:00AM by miltux
via reddit https://ift.tt/2OHIe3d
https://ift.tt/2AJDV4s
Submitted August 05, 2018 at 12:00AM by miltux
via reddit https://ift.tt/2OHIe3d
Flutterbyexample
Flutter By Example
A tutorial site that teaches Flutter and Dart.
Reddit: Widget, State, Context and InheritedWidget in Flutter Applications
https://ift.tt/2O9q2hK
Submitted August 05, 2018 at 12:21AM by Purple_Pizzazz
via reddit https://ift.tt/2OIBemF
https://ift.tt/2O9q2hK
Submitted August 05, 2018 at 12:21AM by Purple_Pizzazz
via reddit https://ift.tt/2OIBemF
Didier Boelens
Didier Boelens - Flutter
Flutter - This article covers the important notions of Widget, State, Context and InheritedWidget in Flutter Applications.
Special attention is paid on the InheritedWidget which is one of the most important and less documented widgets.
Difficulty: Beginner
Special attention is paid on the InheritedWidget which is one of the most important and less documented widgets.
Difficulty: Beginner
GGroup: Adding Multiple Documents to Firestore
I'm creating a user/seller profile in firestore, and understand how to insert documents and data into Firestore. I can't find any tutorials/examples on how to add to multiple documents depending on the selections of the user. *Walkthrough* When the user creates an account, they will be shown a
Submitted August 05, 2018 at 02:14AM by Damien Devillian
via Flutter Dev https://ift.tt/2LVEHQY
I'm creating a user/seller profile in firestore, and understand how to insert documents and data into Firestore. I can't find any tutorials/examples on how to add to multiple documents depending on the selections of the user. *Walkthrough* When the user creates an account, they will be shown a
Submitted August 05, 2018 at 02:14AM by Damien Devillian
via Flutter Dev https://ift.tt/2LVEHQY
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: JavaScript API for firebase push notifications
It seems that there is a JavaScript API for firebase push notifications, so how would I implement this API in my flutter code? Also, if you know a resource that would help with this, please reference that in your reply, such as a video.
Submitted August 05, 2018 at 07:04AM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2Kufqro
It seems that there is a JavaScript API for firebase push notifications, so how would I implement this API in my flutter code? Also, if you know a resource that would help with this, please reference that in your reply, such as a video.
Submitted August 05, 2018 at 07:04AM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2Kufqro
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: Using RefreshIndicator with Flutter StreamBuilder
https://ift.tt/2LU3qFs
Submitted August 05, 2018 at 12:15PM by Elixane
via reddit https://ift.tt/2vGEia2
https://ift.tt/2LU3qFs
Submitted August 05, 2018 at 12:15PM by Elixane
via reddit https://ift.tt/2vGEia2
KhoPhi's Blog
Using RefreshIndicator with Flutter StreamBuilder - KhoPhi's Blog
I wish I knew this earlier on, so I’ll will make it quick and straightforward. If this is the scenario you find yourself in, then…Read moreUsing RefreshIndicator with Flutter StreamBuilder
Reddit: Setup Cocoapod inside Flutter iOS Module
https://ift.tt/2nciS0I
Submitted August 05, 2018 at 12:13PM by Elixane
via reddit https://ift.tt/2vEuXzA
https://ift.tt/2nciS0I
Submitted August 05, 2018 at 12:13PM by Elixane
via reddit https://ift.tt/2vEuXzA
Medium
Setup Cocoapod inside Flutter iOS Module.
If you’ve decided to dive inside native iOS to add features that haven’t yet supported by Flutter or hit a performance roadblock that you…
GGroup: multiple image picker View in Flutter
Have anyone in this group has come across Multiple image picker view plugin in flutter?
Submitted August 05, 2018 at 04:17PM by rakesh lorentz
via Flutter Dev https://ift.tt/2vlbnsP
Have anyone in this group has come across Multiple image picker view plugin in flutter?
Submitted August 05, 2018 at 04:17PM by rakesh lorentz
via Flutter Dev https://ift.tt/2vlbnsP
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: Save state of buttons
I have two radio buttons. One of them is selected while the other isn't selected by default. When I click on the other button, it is selected and the first button is deselected. However, when I leave the app, the app resets the buttons, so how can I save the state of the buttons after I made the
Submitted August 05, 2018 at 05:48PM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2LWOJkY
I have two radio buttons. One of them is selected while the other isn't selected by default. When I click on the other button, it is selected and the first button is deselected. However, when I leave the app, the app resets the buttons, so how can I save the state of the buttons after I made the
Submitted August 05, 2018 at 05:48PM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2LWOJkY
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: Push Notification is tapped
How do you use flutter to know if a push notification is tapped, because I know how to do it for a local notification. For push notifications, I use firebase cloud messaging.
Submitted August 05, 2018 at 05:53PM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2MoW6hm
How do you use flutter to know if a push notification is tapped, because I know how to do it for a local notification. For push notifications, I use firebase cloud messaging.
Submitted August 05, 2018 at 05:53PM by Harish Balasubramanian
via Flutter Dev https://ift.tt/2MoW6hm
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: Handle incoming intents from external apps for iOS in Flutter
I ran into an issue where I couldn't find the iOS counterpart for https://ift.tt/2KslVLC. The use case is I want to share content from browser into my app. Can you please help?
Submitted August 05, 2018 at 08:28PM by Chetan Sachdeva
via Flutter Dev https://ift.tt/2LQMqjn
I ran into an issue where I couldn't find the iOS counterpart for https://ift.tt/2KslVLC. The use case is I want to share content from browser into my app. Can you please help?
Submitted August 05, 2018 at 08:28PM by Chetan Sachdeva
via Flutter Dev https://ift.tt/2LQMqjn
flutter.io
Flutter for Android Developers
This document is meant for Android developers looking to apply theirexisting Android knowledge to build mobile apps with Flutter. If you understandthe fundamentals of the Android framework then you can use this document as ajump start to Flutter development.Your…
Reddit: Middleware library for http, do check it out.
https://ift.tt/2neQMCg
Submitted August 05, 2018 at 08:01PM by sarusethi
via reddit https://ift.tt/2vDm89q
https://ift.tt/2neQMCg
Submitted August 05, 2018 at 08:01PM by sarusethi
via reddit https://ift.tt/2vDm89q
GitHub
TEDConsulting/http_middleware
A middleware library for Dart's http library. Contribute to TEDConsulting/http_middleware development by creating an account on GitHub.