New post on /r/flutterdev subreddit:
Will google give up Flutter?
I just want to see how you guys think about Flutter and its promise & future.Before I invest a lot of time on Flutter, I want to know if Google will just drop this project like other projects they did or they are really promising. I think it matters a lot because it's so much better to have Google Flutter team to support catching up iOS/Android updates.How do you guys think? Do you think Flutter really promising and still growing?
July 20, 2019 at 08:01AM by steadyaction
https://ift.tt/2O23NPt
Will google give up Flutter?
I just want to see how you guys think about Flutter and its promise & future.Before I invest a lot of time on Flutter, I want to know if Google will just drop this project like other projects they did or they are really promising. I think it matters a lot because it's so much better to have Google Flutter team to support catching up iOS/Android updates.How do you guys think? Do you think Flutter really promising and still growing?
July 20, 2019 at 08:01AM by steadyaction
https://ift.tt/2O23NPt
reddit
r/FlutterDev - Will google give up Flutter?
0 votes and 5 comments so far on Reddit
New post on Flutter Dev Google group:
need to call commage in one page to another
Hi. I'm new to flutter. Im working on a app which contain three layer page. In home screen it has three raised button, In second page it has login. third it has details. I need to create a app in which, each raised button has a same login but with differenct deatails according to the raised
July 20, 2019 at 10:14AM by Abinavan Nagendran
https://ift.tt/2O8tT3t
need to call commage in one page to another
Hi. I'm new to flutter. Im working on a app which contain three layer page. In home screen it has three raised button, In second page it has login. third it has details. I need to create a app in which, each raised button has a same login but with differenct deatails according to the raised
July 20, 2019 at 10:14AM by Abinavan Nagendran
https://ift.tt/2O8tT3t
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.
New post on /r/flutterdev subreddit:
How to create Forms in Flutter
https://youtu.be/WpwIZW75YuE
July 20, 2019 at 10:08AM by Elixane
https://ift.tt/2xVdzrW
How to create Forms in Flutter
https://youtu.be/WpwIZW75YuE
July 20, 2019 at 10:08AM by Elixane
https://ift.tt/2xVdzrW
YouTube
How to create Forms in Flutter - Programming Addict
►SUBSCRIBE TO THE CHANNEL ◄
►CHECK OUT OTHER VIDEOS ON THE CHANNEL ◄
►FOR ANY QUESTIONS CONTACT ME AT ◄
Email: codingwithboris@gmail.com
Instagram: https://www.instagram.com/programming.addict/
https://twitter.com/programmingadct
►THIS PROJECT ON GITHUB…
►CHECK OUT OTHER VIDEOS ON THE CHANNEL ◄
►FOR ANY QUESTIONS CONTACT ME AT ◄
Email: codingwithboris@gmail.com
Instagram: https://www.instagram.com/programming.addict/
https://twitter.com/programmingadct
►THIS PROJECT ON GITHUB…
New post on /r/flutterdev subreddit:
RxDart [experimental] Reactive Extensions Library for Dart providing an API for asynchronous programming with observable streams. RxDart created in the style of ReactiveX, and does not depend on Dart Streams. At this point it is quite experimental, and might miss features or have serious bugs.
https://ift.tt/2O70gzE
July 20, 2019 at 11:32AM by EngineerScientist
https://ift.tt/2JPbwv4
RxDart [experimental] Reactive Extensions Library for Dart providing an API for asynchronous programming with observable streams. RxDart created in the style of ReactiveX, and does not depend on Dart Streams. At this point it is quite experimental, and might miss features or have serious bugs.
https://ift.tt/2O70gzE
July 20, 2019 at 11:32AM by EngineerScientist
https://ift.tt/2JPbwv4
GitHub
renggli/dart-rx
Reactive Extensions Library for Dart. Contribute to renggli/dart-rx development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Platform: A generic platform abstraction. Like dart:io, supplies a rich, Dart-idiomatic API for accessing platform-specific info. It provides a wrapper around the static Platform properties in dart:io. Using instance properties rather than static properties, makes it possible to mock out in tests
https://ift.tt/2kI94te
July 20, 2019 at 11:23AM by EngineerScientist
https://ift.tt/2XWpSDV
Platform: A generic platform abstraction. Like dart:io, supplies a rich, Dart-idiomatic API for accessing platform-specific info. It provides a wrapper around the static Platform properties in dart:io. Using instance properties rather than static properties, makes it possible to mock out in tests
https://ift.tt/2kI94te
July 20, 2019 at 11:23AM by EngineerScientist
https://ift.tt/2XWpSDV
GitHub
google/platform.dart
A generic platform abstraction for Dart. Contribute to google/platform.dart development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Houston flutter devs
If anyone is in Houston looking to work on small projects to learn the platform send me a PM! Personally very interested in learning more about how flutter integrates with Firebase.
July 20, 2019 at 03:08PM by JustinFan827
https://ift.tt/2GoB8y6
Houston flutter devs
If anyone is in Houston looking to work on small projects to learn the platform send me a PM! Personally very interested in learning more about how flutter integrates with Firebase.
July 20, 2019 at 03:08PM by JustinFan827
https://ift.tt/2GoB8y6
reddit
r/FlutterDev - Houston flutter devs
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Environment Variables in Flutter apps
I am nearing the release of my first Flutter app and I would love some input on how to properly and securely add any environment variables and API keys into my Flutter apps.Currently this is what I do:Add `dev.env.json` and `prod.env.json` into my `assets` folderCreate a `main_dev.dart` that will parse my `dev.env.json` file and fill my ` BuildEnvironment` classCreate a `main_prod.dart` that will parse my `prod.env.json` file and fill my ` BuildEnvironment` classUse that `BuildEnvironment` class in my files that need to access those API keys and variablesAdd ` *.env.json` to my .gitignore file (so i don't check in any sensitive information to Github)This seems like an okay way of doing things. However, I still need to add my Google API key to the AppDelegate.m file for iOS.What methods do you use for sensitive variables and API keys in your cross-platform apps?Is there an easier way to do this with some CI/CD tools?
July 20, 2019 at 03:52PM by maylortaylor
https://ift.tt/2JHl24y
Environment Variables in Flutter apps
I am nearing the release of my first Flutter app and I would love some input on how to properly and securely add any environment variables and API keys into my Flutter apps.Currently this is what I do:Add `dev.env.json` and `prod.env.json` into my `assets` folderCreate a `main_dev.dart` that will parse my `dev.env.json` file and fill my ` BuildEnvironment` classCreate a `main_prod.dart` that will parse my `prod.env.json` file and fill my ` BuildEnvironment` classUse that `BuildEnvironment` class in my files that need to access those API keys and variablesAdd ` *.env.json` to my .gitignore file (so i don't check in any sensitive information to Github)This seems like an okay way of doing things. However, I still need to add my Google API key to the AppDelegate.m file for iOS.What methods do you use for sensitive variables and API keys in your cross-platform apps?Is there an easier way to do this with some CI/CD tools?
July 20, 2019 at 03:52PM by maylortaylor
https://ift.tt/2JHl24y
reddit
r/FlutterDev - Environment Variables in Flutter apps
0 votes and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
Level Up Flutter Page Transition: Choreographing Animations Across Screens
https://ift.tt/30Kg24M
July 20, 2019 at 05:23PM by shian3n
https://ift.tt/2y0kjVE
Level Up Flutter Page Transition: Choreographing Animations Across Screens
https://ift.tt/30Kg24M
July 20, 2019 at 05:23PM by shian3n
https://ift.tt/2y0kjVE
Medium
Level up Flutter page transition: choreographing animations across screens
Spice up page transitions by chaining multiple core components together in Flutter!
New post on /r/flutterdev subreddit:
Building A Reactive And Persistent Flutter App Using Streams
https://ift.tt/30Jnj4N
July 20, 2019 at 05:18PM by Purple_Pizzazz
https://ift.tt/2y0hV12
Building A Reactive And Persistent Flutter App Using Streams
https://ift.tt/30Jnj4N
July 20, 2019 at 05:18PM by Purple_Pizzazz
https://ift.tt/2y0hV12
Medium
Building A Reactive And Persistent Flutter App Using Streams
In this article, I’ll use a simple app to demonstrate building an UI that can change without requiring a complete rebuilding of all…
New post on /r/flutterdev subreddit:
Plumage Devs Newsletter #1
https://ift.tt/30JKtbg
July 20, 2019 at 05:07PM by DecimalSaxon
https://ift.tt/2y0GNpf
Plumage Devs Newsletter #1
https://ift.tt/30JKtbg
July 20, 2019 at 05:07PM by DecimalSaxon
https://ift.tt/2y0GNpf
New tweet from FlutterDev:
Flutter PSA: If you're waiting for Bitcode support on iOS, have a look at https://t.co/G0biSeJOCM. It does require you to build the engine locally, but hey, it's a start. Feedback welcome.— Filip Hráček (@filiphracek) July 18, 2019
July 20, 2019 at 06:00PM
http://twitter.com/FlutterDev/status/1152609111214678016
Flutter PSA: If you're waiting for Bitcode support on iOS, have a look at https://t.co/G0biSeJOCM. It does require you to build the engine locally, but hey, it's a start. Feedback welcome.— Filip Hráček (@filiphracek) July 18, 2019
July 20, 2019 at 06:00PM
http://twitter.com/FlutterDev/status/1152609111214678016
GitHub
Add Bitcode support for iOS · Issue #15288 · flutter/flutter
Apple may eventually require Bitcode support for iOS. It's currently required for submissions to tvOS and watchOS stores. We've seen Dart's toolchain produce Bitcode as a de...
New post on /r/flutterdev subreddit:
Is there a way to disable the default slide animation of the Navigator?
Isn’t it possible to have no transition from screen to screen?Thank you!
July 20, 2019 at 06:46PM by flexindev
https://ift.tt/30N2K7L
Is there a way to disable the default slide animation of the Navigator?
Isn’t it possible to have no transition from screen to screen?Thank you!
July 20, 2019 at 06:46PM by flexindev
https://ift.tt/30N2K7L
reddit
r/FlutterDev - Is there a way to disable the default slide animation of the Navigator?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter: Android App Bundle Step By Step Guide
https://youtu.be/dRbmjsqERVw
July 20, 2019 at 07:11PM by imthepk
https://ift.tt/2JWRyhR
Flutter: Android App Bundle Step By Step Guide
https://youtu.be/dRbmjsqERVw
July 20, 2019 at 07:11PM by imthepk
https://ift.tt/2JWRyhR
YouTube
Flutter: Android App Bundle Step By Step Guide
In this video, I will explain what is android app bundle, how useful it is and how to use it to deploy the best apps. You will also support both 32-bit and 64-bit architectures using app bundle.
#Trending #Flutter #AppBundle
Read my articles on medium …
#Trending #Flutter #AppBundle
Read my articles on medium …
New post on /r/flutterdev subreddit:
App stopped working since I've added the plugin android_alarm_manager
Hey guys, I've created a github issue and a stackoverflow question a couple of days ago regarding a problem I'm having with my app but haven't heard a response back. So I'm trying here now.Here's the issue (sorry for not posting here, but I think it would just be redundant):https://github.com/flutter/flutter/issues/36388If you could please find the time and maybe give me a suggestion or something on where the problem may lie, I would really appreciate it.Thank you.
July 20, 2019 at 08:39PM by Redbullmandude
https://ift.tt/2JFJQdk
App stopped working since I've added the plugin android_alarm_manager
Hey guys, I've created a github issue and a stackoverflow question a couple of days ago regarding a problem I'm having with my app but haven't heard a response back. So I'm trying here now.Here's the issue (sorry for not posting here, but I think it would just be redundant):https://github.com/flutter/flutter/issues/36388If you could please find the time and maybe give me a suggestion or something on where the problem may lie, I would really appreciate it.Thank you.
July 20, 2019 at 08:39PM by Redbullmandude
https://ift.tt/2JFJQdk
GitHub
[android_alarm_manager] App was working right until I've added this plugin · Issue #36388 · flutter/flutter
Steps to Reproduce I've created a stack overflow question regarding this problem but since I havent received a response yet and this problems dates multiple days now, I'm trying her...
New post on /r/flutterdev subreddit:
webview_flutter configuration
I am new to flutter and trying to use a webview for displaying embeded youtube video. I tried youtube video 3rd party libraries but they didnt work well.So i tried webview but I couldnt find any webview configuration. Also on Android, the fullscreen button was disabled. Any advice?
July 20, 2019 at 10:16PM by steadyaction
https://ift.tt/2JHFfHs
webview_flutter configuration
I am new to flutter and trying to use a webview for displaying embeded youtube video. I tried youtube video 3rd party libraries but they didnt work well.So i tried webview but I couldnt find any webview configuration. Also on Android, the fullscreen button was disabled. Any advice?
July 20, 2019 at 10:16PM by steadyaction
https://ift.tt/2JHFfHs
reddit
r/FlutterDev - webview_flutter configuration
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Bad words package
I need a package that can parse through my input and detect swear words. I tried looking but found nothing. Is there any way I can go about the process without having to write an entire package? Thank you
July 21, 2019 at 09:33AM by Ibrahim Khan
https://ift.tt/2OaLjMW
Bad words package
I need a package that can parse through my input and detect swear words. I tried looking but found nothing. Is there any way I can go about the process without having to write an entire package? Thank you
July 21, 2019 at 09:33AM by Ibrahim Khan
https://ift.tt/2OaLjMW
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.
New post on Flutter Dev Google group:
Custom Keyboard
I wanted to have a custom keyboard that can input Greek Letters. Can you guide me on how I can go about that? Thank you
July 21, 2019 at 09:42AM by Ibrahim Khan
https://ift.tt/2YYkDzX
Custom Keyboard
I wanted to have a custom keyboard that can input Greek Letters. Can you guide me on how I can go about that? Thank you
July 21, 2019 at 09:42AM by Ibrahim Khan
https://ift.tt/2YYkDzX
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.
New post on /r/flutterdev subreddit:
Flutter package for Ant Icons (https://ift.tt/2DhhQXJ)
https://ift.tt/2Y194M9
July 21, 2019 at 10:03AM by excogitatr
https://ift.tt/2Y4EMmA
Flutter package for Ant Icons (https://ift.tt/2DhhQXJ)
https://ift.tt/2Y194M9
July 21, 2019 at 10:03AM by excogitatr
https://ift.tt/2Y4EMmA
ant.design
Ant Design - A UI Design Language
An enterprise-class UI design language and React implementation with a set of high-quality React components, one of best React UI library for enterprises
New post on /r/flutterdev subreddit:
FlutterForce — Week 36
https://ift.tt/2M48fei
July 21, 2019 at 11:06AM by flutterist
https://ift.tt/2JJ8A4r
FlutterForce — Week 36
https://ift.tt/2M48fei
July 21, 2019 at 11:06AM by flutterist
https://ift.tt/2JJ8A4r
Medium
FlutterForce — #Week 36
Weekly Flutter Resources
New post on /r/flutterdev subreddit:
A Complete Guide to Flutter Animations and All it’s parts
https://ift.tt/2O7eQqT
July 21, 2019 at 12:42PM by codinglatte
https://ift.tt/2xXD4c3
A Complete Guide to Flutter Animations and All it’s parts
https://ift.tt/2O7eQqT
July 21, 2019 at 12:42PM by codinglatte
https://ift.tt/2xXD4c3
Medium
A Complete Guide to Flutter Animations and All it’s parts
Today we’ll be looking at animations in Flutter, how they work and how to make them a tiny bit more manageable in code.
New post on /r/flutterdev subreddit:
Flutter Live: Learning Provider | v 3 | Learn it with me!
https://www.youtube.com/watch?v=lH1IOgrrZ1A
July 21, 2019 at 03:50PM by RobertBrunhage
https://ift.tt/2LZIBY1
Flutter Live: Learning Provider | v 3 | Learn it with me!
https://www.youtube.com/watch?v=lH1IOgrrZ1A
July 21, 2019 at 03:50PM by RobertBrunhage
https://ift.tt/2LZIBY1
YouTube
Flutter Live: Learning Provider | v 3 | Learn it with me!
Will be following: https://pub.dev/packages/provider#-readme-tab-. Ps. I will not just make a counter app to learn Provider :)
Github: https://github.com/RobertBrunhage/flutter_state_management_livestreams/tree/master/provider_learning
⭐⭐⭐ SUPPORT ME ⭐⭐⭐…
Github: https://github.com/RobertBrunhage/flutter_state_management_livestreams/tree/master/provider_learning
⭐⭐⭐ SUPPORT ME ⭐⭐⭐…