New post on Flutter Dev Google group:
Flutter and Waze SDK
Hello, Can we integrate Waze SDK to develop Flutter App ?
March 14, 2019 at 08:59AM by noorhid...@gmail.com
https://ift.tt/2TKIfsA
Flutter and Waze SDK
Hello, Can we integrate Waze SDK to develop Flutter App ?
March 14, 2019 at 08:59AM by noorhid...@gmail.com
https://ift.tt/2TKIfsA
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:
Should I - as beginner in coding - start learning dart and try to do some flutter or instead learn Java and do Android development
Will I learn more from Android development because it is older than flutter?
March 14, 2019 at 08:18AM by EnormousChungus
https://ift.tt/2XTbwQR
Should I - as beginner in coding - start learning dart and try to do some flutter or instead learn Java and do Android development
Will I learn more from Android development because it is older than flutter?
March 14, 2019 at 08:18AM by EnormousChungus
https://ift.tt/2XTbwQR
reddit
r/FlutterDev - Should I - as beginner in coding - start learning dart and try to do some flutter or instead learn Java and do Android…
0 votes and 1 comment so far on Reddit
New post on Flutter Dev Google group:
Redrawing particular widget on multiple widget
Hi Guys, I have multiple widgets in a container and need to redraw or repaint the particular widget in a container. Other widgets are no change. Is this possible?
March 14, 2019 at 12:04PM by Saravana Kumar K
https://ift.tt/2VXVIL1
Redrawing particular widget on multiple widget
Hi Guys, I have multiple widgets in a container and need to redraw or repaint the particular widget in a container. Other widgets are no change. Is this possible?
March 14, 2019 at 12:04PM by Saravana Kumar K
https://ift.tt/2VXVIL1
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:
Powerful databinding in Flutter
I started using Flutter a few weeks ago, and it seems fantastic and the future of crossplattform development. But state management and UI Updates always seem to involve a lot of boiler plate code and classes and/or wrapping values of you Code into Oberservable<T> or making it immutable which makes it tenuous to work with the Model. Or you have to call setState so your Model has to know about what UI to update which is also no maintainable. Qlso you can only bind your UI against a local Model, and just just add a line (plugin) to have the Model e.g. in Firestore. If you know about anything like this please let me know, otherwise I am going to develop this library I would love to hear about ideas.Counter Example for my Databinding solution, please note that you can still use any separation of Model, View and Logic just for the simple example I am not going to do it.
March 14, 2019 at 12:30PM by MugalonDotCom
https://ift.tt/2JbbGQh
Powerful databinding in Flutter
I started using Flutter a few weeks ago, and it seems fantastic and the future of crossplattform development. But state management and UI Updates always seem to involve a lot of boiler plate code and classes and/or wrapping values of you Code into Oberservable<T> or making it immutable which makes it tenuous to work with the Model. Or you have to call setState so your Model has to know about what UI to update which is also no maintainable. Qlso you can only bind your UI against a local Model, and just just add a line (plugin) to have the Model e.g. in Firestore. If you know about anything like this please let me know, otherwise I am going to develop this library I would love to hear about ideas.Counter Example for my Databinding solution, please note that you can still use any separation of Model, View and Logic just for the simple example I am not going to do it.
class MyApp extends StatelessWidget with Bindable { int get counter => get("counter", 0); set counter(int v) => set("counter", v); @override Widget build(BuildContext context) { return MaterialApp( title: 'Binding Demo', home: Scaffold( body: Center( child: Binding( builder: (c) => Text("You have pressed the button $counter times"))), floatingActionButton: FloatingActionButton( onPressed: () => counter++, child: Icon(Icons.add), ), )); } }The Bindable class will make any class Bindable (as a mixin "with") and the Binding Widget will keep the UI up to date without any boilerplate and even be able to know if your UI is bound against a complex function not only simple variables as in this example.Some Advantages:-fastest and simplest way to code, e.g. not wrapping every Value into Oberservable<T> or adding many classes for actions, reducers etc.-Models / Logic should not know about the UI and when it needs to update-only update very small part based on actually changed value-even update parts that get their data from complex functions-can add "plugins" to save data to shared prefs, firestore or add "time traveling" or undo / redo with a library and one line of code.the library will kept extendable so anyone can develop new pluginsTL;DR: Make Statemanagement easier and more powerful
March 14, 2019 at 12:30PM by MugalonDotCom
https://ift.tt/2JbbGQh
reddit
r/FlutterDev - Powerful databinding in Flutter
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
issue with chewie player
I use a custom chewie player to play the video and came across an error! When you rotate the screen during playback, this error appears...
March 14, 2019 at 01:34PM by anco...@gmail.com
https://ift.tt/2TEd7f4
issue with chewie player
I use a custom chewie player to play the video and came across an error! When you rotate the screen during playback, this error appears...
March 14, 2019 at 01:34PM by anco...@gmail.com
https://ift.tt/2TEd7f4
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:
flutter inapp purchase
Who knows how to implement a purchase in the application using the "flutter_inapp_purchase" plugin? I read the materials and found an example only for androids! i need for ios
March 14, 2019 at 01:37PM by anco...@gmail.com
https://ift.tt/2Fc4HBF
flutter inapp purchase
Who knows how to implement a purchase in the application using the "flutter_inapp_purchase" plugin? I read the materials and found an example only for androids! i need for ios
March 14, 2019 at 01:37PM by anco...@gmail.com
https://ift.tt/2Fc4HBF
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 inapp purchase
Who knows how to implement a purchase in the application using the "flutter_inapp_purchase" plugin?I read the materials and found an example only for androids! i need for ios
March 14, 2019 at 01:44PM by almazamangaliev
https://ift.tt/2UBw7qT
flutter inapp purchase
Who knows how to implement a purchase in the application using the "flutter_inapp_purchase" plugin?I read the materials and found an example only for androids! i need for ios
March 14, 2019 at 01:44PM by almazamangaliev
https://ift.tt/2UBw7qT
reddit
r/FlutterDev - flutter inapp purchase
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Mobx - Can I keep the global store on hot reload?
Right now I have a Store setup that is fed into the App globally using the Provider package. Everything works great, but if I make a change on the page the state is reset to a blank state and and I have to navigate around to attempt to get the widget back to normal again. Has anyone setup their Mobx store (or any stateful tool) to persist a global state through hot reload?
March 14, 2019 at 02:12PM by noobishdeveloper
https://ift.tt/2UAsQIj
Mobx - Can I keep the global store on hot reload?
Right now I have a Store setup that is fed into the App globally using the Provider package. Everything works great, but if I make a change on the page the state is reset to a blank state and and I have to navigate around to attempt to get the widget back to normal again. Has anyone setup their Mobx store (or any stateful tool) to persist a global state through hot reload?
March 14, 2019 at 02:12PM by noobishdeveloper
https://ift.tt/2UAsQIj
reddit
r/FlutterDev - Mobx - Can I keep the global store on hot reload?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter UI - Minimal Designs - Plants
https://youtu.be/ok5zoeE_5x0
March 14, 2019 at 05:17PM by rajayogan27
https://ift.tt/2VUIJcM
Flutter UI - Minimal Designs - Plants
https://youtu.be/ok5zoeE_5x0
March 14, 2019 at 05:17PM by rajayogan27
https://ift.tt/2VUIJcM
YouTube
Flutter UI - Minimal Designs - Plants
Need an app ? - http://rajayogan.com
Buy my course - https://www.udemy.com/learn-flutter-from-scratch/?couponCode=SPECOFF
First screen video - https://youtu.be/yjij9H2KS-Q
Follow me on twitter - https://twitter.com/rajayogan14k
Other flutter videos -…
Buy my course - https://www.udemy.com/learn-flutter-from-scratch/?couponCode=SPECOFF
First screen video - https://youtu.be/yjij9H2KS-Q
Follow me on twitter - https://twitter.com/rajayogan14k
Other flutter videos -…
New post on Flutter Dev Google group:
Well structured flutter
I hope this is an appropriate question for this forum! I'm a long time developer, brand new flutter-er. I've hired a team to help me port an Ionic app to flutter and this is a sample of some of the code they've started to deliver. In my old-school coding eyes it seems like they've crammed
March 14, 2019 at 06:09PM by Brendan Eamer
https://ift.tt/2Coq4yR
Well structured flutter
I hope this is an appropriate question for this forum! I'm a long time developer, brand new flutter-er. I've hired a team to help me port an Ionic app to flutter and this is a sample of some of the code they've started to deliver. In my old-school coding eyes it seems like they've crammed
March 14, 2019 at 06:09PM by Brendan Eamer
https://ift.tt/2Coq4yR
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:
My experience launching an app in 3 months with no prior Flutter experience
I started learning Flutter since 1.0 dropped in December and am almost ready to release my app! My experience working with Flutter has been nothing but amazing. I'm still amazed by how quickly I was able to build a fully functioning app in such a short amount of time.My favourite feature is hot reloading, it makes prototyping UIs so quick and easy. As a lone developer I do all of the design and coding myself. Normally I mockup my designs in Sketch but with hot reloading I ended up building the UI in code because it was just quicker.I ended up using the BLoC pattern for state management. Redux is another good solution but I felt it was overkill for the scope of this project.Learning dart was very easy. If you know javascript, Kotlin, C#, Swift or any modern OOP language then it's really easy to pick up without having to read a programming manual or take a course.There are lots of learning material on the web but I would highly recommend Steven Girder's Udemy course if you want a crash course in Flutter and dart. Watch it on 2x speed and you can get through it in a week.Some of my favourite packages that I used in this project: * charts_flutter for charts * cloud_firestore for online data persistence * flutter_crashlytics for crash logging * intl for formatting numbers * rxdart for working with streamsI am planning on launching my app in the next month and am looking for beta testers. Would love to get some feedback, cheers! Here's a link to my site
March 14, 2019 at 06:15PM by funpolice
https://ift.tt/2TSKg5M
My experience launching an app in 3 months with no prior Flutter experience
I started learning Flutter since 1.0 dropped in December and am almost ready to release my app! My experience working with Flutter has been nothing but amazing. I'm still amazed by how quickly I was able to build a fully functioning app in such a short amount of time.My favourite feature is hot reloading, it makes prototyping UIs so quick and easy. As a lone developer I do all of the design and coding myself. Normally I mockup my designs in Sketch but with hot reloading I ended up building the UI in code because it was just quicker.I ended up using the BLoC pattern for state management. Redux is another good solution but I felt it was overkill for the scope of this project.Learning dart was very easy. If you know javascript, Kotlin, C#, Swift or any modern OOP language then it's really easy to pick up without having to read a programming manual or take a course.There are lots of learning material on the web but I would highly recommend Steven Girder's Udemy course if you want a crash course in Flutter and dart. Watch it on 2x speed and you can get through it in a week.Some of my favourite packages that I used in this project: * charts_flutter for charts * cloud_firestore for online data persistence * flutter_crashlytics for crash logging * intl for formatting numbers * rxdart for working with streamsI am planning on launching my app in the next month and am looking for beta testers. Would love to get some feedback, cheers! Here's a link to my site
March 14, 2019 at 06:15PM by funpolice
https://ift.tt/2TSKg5M
Dart packages
charts_flutter | Flutter Package
Material Design charting library for flutter.
New post on /r/flutterdev subreddit:
Sketch to Flutter. Automatically.
https://ift.tt/2O6DYKz
March 14, 2019 at 05:55PM by Purple_Pizzazz
https://ift.tt/2FcRN7E
Sketch to Flutter. Automatically.
https://ift.tt/2O6DYKz
March 14, 2019 at 05:55PM by Purple_Pizzazz
https://ift.tt/2FcRN7E
Medium
Sketch to Flutter. Automatically.
When we first started Supernova, the only supported platform was iOS. Eventually, as we added full support for the most important…
New post on /r/flutterdev subreddit:
Gmail Clone built with Flutter
https://ift.tt/2Cv2TmL
March 14, 2019 at 06:35PM by SoundDr
https://ift.tt/2O3IxoZ
Gmail Clone built with Flutter
https://ift.tt/2Cv2TmL
March 14, 2019 at 06:35PM by SoundDr
https://ift.tt/2O3IxoZ
Imgur
Post with 80 views.
New post on /r/flutterdev subreddit:
I'm a self-taught developer building an app with Flutter & Cloud Firestore using Bloc. This is a blog that is documenting the process. Just finished the first week!
https://ift.tt/2TJhmFp
March 14, 2019 at 09:24PM by definitely_robots
https://ift.tt/2JcOb9C
I'm a self-taught developer building an app with Flutter & Cloud Firestore using Bloc. This is a blog that is documenting the process. Just finished the first week!
https://ift.tt/2TJhmFp
March 14, 2019 at 09:24PM by definitely_robots
https://ift.tt/2JcOb9C
Streams from the Cloud
Developing Flutter Apps with Cloud Firestore and the Bloc Pattern
New tweet from flutterio:
Import 'dart:math' to get pi. (Happy Pi Day Flutter friends!)
Find out more about math in Dart here → https://t.co/xPTkHdVduU pic.twitter.com/Wcus7QMGAf— Flutter (@flutterio) March 14, 2019
March 14, 2019 at 09:44PM
http://twitter.com/flutterio/status/1106294961258020866
Import 'dart:math' to get pi. (Happy Pi Day Flutter friends!)
Find out more about math in Dart here → https://t.co/xPTkHdVduU pic.twitter.com/Wcus7QMGAf— Flutter (@flutterio) March 14, 2019
March 14, 2019 at 09:44PM
http://twitter.com/flutterio/status/1106294961258020866
api.dartlang.org
dart:math library - Dart API
dart:math library API docs, for the Dart programming language.
New post on Flutter Dev Google group:
Can't Initialize Async SharedPreferences Class via Constructor
I'm attempting to use this package: https://ift.tt/2qON5X8 Here's my code: import 'package:shared_preferences/shared_preferences.dart'; class SharedPreferencesProvider { SharedPreferences prefs; SharedPreferencesProvider() { init(); } // Get get
March 14, 2019 at 09:57PM by Matthew Jones
https://ift.tt/2TFBaKs
Can't Initialize Async SharedPreferences Class via Constructor
I'm attempting to use this package: https://ift.tt/2qON5X8 Here's my code: import 'package:shared_preferences/shared_preferences.dart'; class SharedPreferencesProvider { SharedPreferences prefs; SharedPreferencesProvider() { init(); } // Get get
March 14, 2019 at 09:57PM by Matthew Jones
https://ift.tt/2TFBaKs
Dart Packages
shared_preferences | Flutter Package
shared_preferences Flutter and Dart package - Flutter plugin for reading and writing simple key-value pairs. Wraps NSUserDefaults on iOS and SharedPreferences on Android.
New tweet from flutterio:
🥧 Now we're craving a different kind of Pi! 🤖
What have you cooked up using a Raspberry Pi and Flutter? Here's an example to try: run Flutter on a Raspberry Pi. #PiDay
Learn how here ↓ https://t.co/ZuejhTAvQp— Flutter (@flutterio) March 14, 2019
March 14, 2019 at 10:39PM
http://twitter.com/flutterio/status/1106308837563260928
🥧 Now we're craving a different kind of Pi! 🤖
What have you cooked up using a Raspberry Pi and Flutter? Here's an example to try: run Flutter on a Raspberry Pi. #PiDay
Learn how here ↓ https://t.co/ZuejhTAvQp— Flutter (@flutterio) March 14, 2019
March 14, 2019 at 10:39PM
http://twitter.com/flutterio/status/1106308837563260928
Twitter
#piday hashtag on Twitter
19h ago @PiCoreTeam tweeted: "🎉We've crossed 14m+ Pioneers!
🥧 Get .." - read what others are saying and join the conversation.
🥧 Get .." - read what others are saying and join the conversation.
New post on Flutter Dev Google group:
How to display a image when app opens???
When we click the app to open, it shows white screen and takes 3 to 5 secs and then goes to app initial screen. I want to display some image unique to the app instead of white screen is thr anyway to do tht?????? pradeep
March 15, 2019 at 01:32AM by Riddick 4Ever
https://ift.tt/2TQ13GJ
How to display a image when app opens???
When we click the app to open, it shows white screen and takes 3 to 5 secs and then goes to app initial screen. I want to display some image unique to the app instead of white screen is thr anyway to do tht?????? pradeep
March 15, 2019 at 01:32AM by Riddick 4Ever
https://ift.tt/2TQ13GJ
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:
flutter Webview file choser and javascript injection
Good day is there a way to inject javascript into the webview before or on page load of the website and also allow upload button in the website be able to open file chooser in android or ios? Please help time is not on my side i really need to deliver this web app fast with custom javascript
March 15, 2019 at 01:47AM by katlego n
https://ift.tt/2JaIatR
flutter Webview file choser and javascript injection
Good day is there a way to inject javascript into the webview before or on page load of the website and also allow upload button in the website be able to open file chooser in android or ios? Please help time is not on my side i really need to deliver this web app fast with custom javascript
March 15, 2019 at 01:47AM by katlego n
https://ift.tt/2JaIatR
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:
Paid Research Study: Software Development
Hello, My name is Sandra Hill. I am a research recruiter for JR Research Inc. a major market research firm. We are conducting a research study about Software Development We are looking for Professional Developers for this study and would like to consider including you in a discussion about
March 15, 2019 at 02:15AM by Sandra Hill
https://ift.tt/2HiChsU
Paid Research Study: Software Development
Hello, My name is Sandra Hill. I am a research recruiter for JR Research Inc. a major market research firm. We are conducting a research study about Software Development We are looking for Professional Developers for this study and would like to consider including you in a discussion about
March 15, 2019 at 02:15AM by Sandra Hill
https://ift.tt/2HiChsU
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.