New post on /r/flutterdev subreddit:
Let's show our love for Flutter and Dart teams. Nominate Flutter & Dart as the Most Welcoming Developer Community
https://twitter.com/filiphracek/status/1186798471270895616
October 23, 2019 at 05:14PM by EngineerScientist
https://ift.tt/2N9csMj
  
  Let's show our love for Flutter and Dart teams. Nominate Flutter & Dart as the Most Welcoming Developer Community
https://twitter.com/filiphracek/status/1186798471270895616
October 23, 2019 at 05:14PM by EngineerScientist
https://ift.tt/2N9csMj
Twitter
  
  Filip Hráček
  Turns out there is such a thing as "DevRel Awards". And look at what is one of the categories! https://t.co/Vm8UYJlDwu
  New post on Flutter Dev Google group:
Google assistant integration
Is there a plug-in yet for google assistant , Siri and Alexa? We are looking at integrating voice in our flutter app
October 23, 2019 at 05:45PM by Sam Cromer
https://ift.tt/31AFn1a
  
  Google assistant integration
Is there a plug-in yet for google assistant , Siri and Alexa? We are looking at integrating voice in our flutter app
October 23, 2019 at 05:45PM by Sam Cromer
https://ift.tt/31AFn1a
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:
Financial App UI in flutter - Part 1
https://ift.tt/32Gaslz
October 23, 2019 at 06:19PM by cybdom
https://ift.tt/2MJjKYx
  
  Financial App UI in flutter - Part 1
https://ift.tt/32Gaslz
October 23, 2019 at 06:19PM by cybdom
https://ift.tt/2MJjKYx
Flutter Tutorial by Cybdom Tech
  
  Financial App UI in flutter - Part 1
  Wallet apps are very common nowadays, as we are using more and more our phones for financial purposes. Today we will try to replicate this design from https://dribbble.com/shots/6639981-Wallet-app
  New post on /r/flutterdev subreddit:
Happy 5th birthday Flutter!
https://ift.tt/2nfV283
October 23, 2019 at 07:05PM by MechaSnowflake
https://ift.tt/2PeE4lW
  
  Happy 5th birthday Flutter!
https://ift.tt/2nfV283
October 23, 2019 at 07:05PM by MechaSnowflake
https://ift.tt/2PeE4lW
OrangeLoops
  
  A Look at Flutter from a Native Developer
  If you are into mobile app development then you've probably heard about Flutter, Google's open-source framework for building cross-platform applications. Released in 2017, the interest about Flutter kept growing since its launch, as you can see…
  New post on /r/flutterdev subreddit:
Dart extensions applied to i18n!!! You have Text("Hello") and you want to translate it to the current locale. You just need to add .i18n to the string, like this: Text("Hello".i18n). This would display "Hola" in Spanish, "Olá" in Portuguese, and so on. You can also have plurals, genders etc.
https://ift.tt/2PdJY6M
October 23, 2019 at 07:02PM by marcglasberg
https://ift.tt/2Jgz8cK
  
  Dart extensions applied to i18n!!! You have Text("Hello") and you want to translate it to the current locale. You just need to add .i18n to the string, like this: Text("Hello".i18n). This would display "Hola" in Spanish, "Olá" in Portuguese, and so on. You can also have plurals, genders etc.
https://ift.tt/2PdJY6M
October 23, 2019 at 07:02PM by marcglasberg
https://ift.tt/2Jgz8cK
Dart packages
  
  i18n_extension | Flutter Package
  Translation and Internationalization (i18n) for Flutter. Easy to use for both large and small projects. Uses Dart extensions to reduce boilerplate.
  New post on Flutter Dev Google group:
Incompatibility between geolocator and onesignal_flutter plugins causes unexpected application termination
*Steps to Reproduce:* - Start a new flutter app project - Add to your pubspec.yaml the following dependencies: onesignal_flutter: ^2.0.0 geolocator: ^5.1.3 - run the app (Returns an error requesting migration to androidX) - Finish the app and migrate your project to androidX
October 23, 2019 at 09:11PM by Will Lopes
https://ift.tt/2PeuMqi
  
  Incompatibility between geolocator and onesignal_flutter plugins causes unexpected application termination
*Steps to Reproduce:* - Start a new flutter app project - Add to your pubspec.yaml the following dependencies: onesignal_flutter: ^2.0.0 geolocator: ^5.1.3 - run the app (Returns an error requesting migration to androidX) - Finish the app and migrate your project to androidX
October 23, 2019 at 09:11PM by Will Lopes
https://ift.tt/2PeuMqi
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:
Example of how to create a simple implicit animation widget
Implicit animation widgets are some of my favorite widgets in Flutter. Easy to use, usable in Stateless Widgets (no animation controller) and a very straightforward API.Flutter's built in implicit animation widgets are listed here: https://api.flutter.dev/flutter/widgets/ImplicitlyAnimatedWidget-class.htmlI wanted to take a crack at making my own. I wanted an implicit animation widget for rotation specifically so I wrote it here: https://github.com/MisterJimson/animated_rotationVery simple to implement. I'm interested in making more. I much prefer using Stateless Widgets in my application code, so having widgets like this is very nice.If you aren't familiar with the concept, this article has a good overview: https://medium.com/flutter-community/animated-widgets-in-flutter-763fd5dd6d01
October 23, 2019 at 09:57PM by MisterJimson
https://ift.tt/2N5XKpF
  
  Example of how to create a simple implicit animation widget
Implicit animation widgets are some of my favorite widgets in Flutter. Easy to use, usable in Stateless Widgets (no animation controller) and a very straightforward API.Flutter's built in implicit animation widgets are listed here: https://api.flutter.dev/flutter/widgets/ImplicitlyAnimatedWidget-class.htmlI wanted to take a crack at making my own. I wanted an implicit animation widget for rotation specifically so I wrote it here: https://github.com/MisterJimson/animated_rotationVery simple to implement. I'm interested in making more. I much prefer using Stateless Widgets in my application code, so having widgets like this is very nice.If you aren't familiar with the concept, this article has a good overview: https://medium.com/flutter-community/animated-widgets-in-flutter-763fd5dd6d01
October 23, 2019 at 09:57PM by MisterJimson
https://ift.tt/2N5XKpF
api.flutter.dev
  
  ImplicitlyAnimatedWidget class - widgets library - Dart API
  API docs for the ImplicitlyAnimatedWidget class from the widgets library, for the Dart programming language.
  New post on /r/flutterdev subreddit:
Our Flutter app "Redrix" hit the front page of Reddit yesterday!
A couple months ago, a good friend of mine /u/mikechambers wanted to play with the Destiny 2 API, and I was looking for an excuse to build something with Flutter, so we decided to collaborate on an app. It came together surprisingly quickly, and we have both really loved working with Dart and Flutter. Mike handled data integration, and I handled design and UI dev.Yesterday, we shared it publicly for the first time, and the response has been overwhelming! We were the top post in the two largest Destiny subreddits ( /r/DestinyTheGame and /r/CruciblePlaybook ), hit the front page of Reddit, and made top 100 for the iOS app store for the entertainment category.Feedback has been incredibly positive, with people commenting on how smooth it runs and how pretty it is. To me that's a huge testament to Flutter, the Flutter team, and the community in general (I've read a lot of blog posts working on this).Feel free to check it out at http://redrix.io - it's free, and has no ads, we built it as a passion project. Feel free to use "mesh" on Xbox to sign in and have a look.
October 23, 2019 at 08:53PM by grantskinner
https://ift.tt/341YzGV
  
  Our Flutter app "Redrix" hit the front page of Reddit yesterday!
A couple months ago, a good friend of mine /u/mikechambers wanted to play with the Destiny 2 API, and I was looking for an excuse to build something with Flutter, so we decided to collaborate on an app. It came together surprisingly quickly, and we have both really loved working with Dart and Flutter. Mike handled data integration, and I handled design and UI dev.Yesterday, we shared it publicly for the first time, and the response has been overwhelming! We were the top post in the two largest Destiny subreddits ( /r/DestinyTheGame and /r/CruciblePlaybook ), hit the front page of Reddit, and made top 100 for the iOS app store for the entertainment category.Feedback has been incredibly positive, with people commenting on how smooth it runs and how pretty it is. To me that's a huge testament to Flutter, the Flutter team, and the community in general (I've read a lot of blog posts working on this).Feel free to check it out at http://redrix.io - it's free, and has no ads, we built it as a passion project. Feel free to use "mesh" on Xbox to sign in and have a look.
October 23, 2019 at 08:53PM by grantskinner
https://ift.tt/341YzGV
Reddit
  
  overview for mikechambers
  The u/mikechambers community on Reddit. Reddit gives you the best of the internet in one place.
  New post on /r/flutterdev subreddit:
Flutter App Working On Simulator, Freezing On Real Device (Release mode)
Hi,I have a big problem right now, where in, I was testing my flutter android app on simulator and everything was working perfectly fine there. I stupidly posted that as an update to my 2000+ active users and the app is freezing in release mode as soon as you open it, making it unusable for all my users.I have been trying to fix this issue since 6 hours but have gotten nowhere, and I'm constantly getting spammed by my users. Do you have any idea why this might be happening?Thanks
October 23, 2019 at 10:47PM by chancemehmu
https://ift.tt/362feeW
  
  Flutter App Working On Simulator, Freezing On Real Device (Release mode)
Hi,I have a big problem right now, where in, I was testing my flutter android app on simulator and everything was working perfectly fine there. I stupidly posted that as an update to my 2000+ active users and the app is freezing in release mode as soon as you open it, making it unusable for all my users.I have been trying to fix this issue since 6 hours but have gotten nowhere, and I'm constantly getting spammed by my users. Do you have any idea why this might be happening?Thanks
October 23, 2019 at 10:47PM by chancemehmu
https://ift.tt/362feeW
reddit
  
  Flutter App Working On Simulator, Freezing On Real Device (Release...
  Hi, I have a big problem right now, where in, I was testing my flutter android app on simulator and everything was working perfectly fine...
  New post on Flutter Dev Google group:
Navigating from a screen to another fails
Hi all, Can somebody please help me solve my problem? I am a beginner with flutter and trying to have an app which should display several screens when a button is pressed on, but could not launch the second screen. I followed the tutorials and could get the following code below with some
October 24, 2019 at 12:13AM by Hubert Djéteinboua
https://ift.tt/2BC3kdV
  
  Navigating from a screen to another fails
Hi all, Can somebody please help me solve my problem? I am a beginner with flutter and trying to have an app which should display several screens when a button is pressed on, but could not launch the second screen. I followed the tutorials and could get the following code below with some
October 24, 2019 at 12:13AM by Hubert Djéteinboua
https://ift.tt/2BC3kdV
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 tweet from FlutterDev:
😱Tap the GIF 😱
Pause to land one of our friends in the outline to reveal a top secret message. 🤫
Good luck! pic.twitter.com/4KsV6Eswui— Flutter (@FlutterDev) October 23, 2019
October 23, 2019 at 11:33PM
http://twitter.com/FlutterDev/status/1187119945282273280
  
  😱Tap the GIF 😱
Pause to land one of our friends in the outline to reveal a top secret message. 🤫
Good luck! pic.twitter.com/4KsV6Eswui— Flutter (@FlutterDev) October 23, 2019
October 23, 2019 at 11:33PM
http://twitter.com/FlutterDev/status/1187119945282273280
Twitter
  Flutter
  😱Tap the GIF 😱 Pause to land one of our friends in the outline to reveal a top secret message. 🤫 Good luck! https://t.co/4KsV6Eswui
  New post on /r/flutterdev subreddit:
Secret message posted by @FlutterDev
@FlutterDev posted a secret message on Twitter"Interact - Hatching in 120 hours"I have no idea what's hatching. Any ideas?
October 24, 2019 at 12:10AM by passsy
https://ift.tt/2MHz9bO
  
  Secret message posted by @FlutterDev
@FlutterDev posted a secret message on Twitter"Interact - Hatching in 120 hours"I have no idea what's hatching. Any ideas?
October 24, 2019 at 12:10AM by passsy
https://ift.tt/2MHz9bO
Twitter
  Flutter
  😱Tap the GIF 😱 Pause to land one of our friends in the outline to reveal a top secret message. 🤫 Good luck! https://t.co/4KsV6Eswui
  New post on /r/flutterdev subreddit:
Approaches to Offline Data Sync WITHOUT Firebase
Is anyone here building or has built an offline-first app, with full syncing capabilities, in Flutter and NOT using Firebase?From what I've read, there are a few "managed" solutions that will do this for you including PouchDb + Couchbase, Realm, and AWS AppSync.If you're using Couchbase for your db, that seems like a great option. In my case, I already have an existing Postgres server so it appears to be a no-go.Realm seems like a promising solution but has no official support for Flutter although there is a community library (more of an example) showing how to use FFI to access Realm's C++ library.AWS AppSync is another interesting alternative but again, no official Flutter support.What's everyone doing for offline data sync? Would love to hear thoughts, approaches, etc!Cheers
October 23, 2019 at 11:45PM by jdixon04
https://ift.tt/2qD6Mmh
  
  Approaches to Offline Data Sync WITHOUT Firebase
Is anyone here building or has built an offline-first app, with full syncing capabilities, in Flutter and NOT using Firebase?From what I've read, there are a few "managed" solutions that will do this for you including PouchDb + Couchbase, Realm, and AWS AppSync.If you're using Couchbase for your db, that seems like a great option. In my case, I already have an existing Postgres server so it appears to be a no-go.Realm seems like a promising solution but has no official support for Flutter although there is a community library (more of an example) showing how to use FFI to access Realm's C++ library.AWS AppSync is another interesting alternative but again, no official Flutter support.What's everyone doing for offline data sync? Would love to hear thoughts, approaches, etc!Cheers
October 23, 2019 at 11:45PM by jdixon04
https://ift.tt/2qD6Mmh
reddit
  
  Approaches to Offline Data Sync WITHOUT Firebase
  Is anyone here building or has built an offline-first app, with full syncing capabilities, in Flutter and NOT using Firebase? From what I've...
  New post on /r/flutterdev subreddit:
DashCast is back! (The Boring Flutter Development Show, Ep. 32)
https://www.youtube.com/watch?v=d2gRn6cOEhA&feature=youtu.be
October 24, 2019 at 02:09AM by MarkOSullivan
https://ift.tt/31AHgek
  
  DashCast is back! (The Boring Flutter Development Show, Ep. 32)
https://www.youtube.com/watch?v=d2gRn6cOEhA&feature=youtu.be
October 24, 2019 at 02:09AM by MarkOSullivan
https://ift.tt/31AHgek
YouTube
  
  DashCast is back! (The Boring Flutter Development Show, Ep. 32)
  In this episode of the Boring Show, Emily and Matt work on DashCast, the ultimate in podcasting apps. Learn how to parse rss feeds, pass data between multipl...
  New post on /r/flutterdev subreddit:
DashCast is back! (The Boring Flutter Development Show, Ep. 32)
https://youtu.be/d2gRn6cOEhA
October 24, 2019 at 01:47AM by EngineerScientist
https://ift.tt/2N9X1Ue
  
  DashCast is back! (The Boring Flutter Development Show, Ep. 32)
https://youtu.be/d2gRn6cOEhA
October 24, 2019 at 01:47AM by EngineerScientist
https://ift.tt/2N9X1Ue
YouTube
  
  DashCast is back! (The Boring Flutter Development Show, Ep. 32)
  In this episode of the Boring Show, Emily and Matt work on DashCast, the ultimate in podcasting apps. Learn how to parse rss feeds, pass data between multiple screens, stream audio, and more!
Check out part 1, where they create the foundations of the DashCast…
  Check out part 1, where they create the foundations of the DashCast…
New post on /r/flutterdev subreddit:
Avito UI Clone | Flutter | Challenge 1 | Part 1
Hey Guys i hope you are okey i'm a new flutter developer i tried to clone this app ...........please rate my work and tell me some adviceshttps://www.youtube.com/watch?v=522VhXk7BuA
October 24, 2019 at 01:05AM by UpstairsDiscipline1
https://ift.tt/31IhYLp
  
  Avito UI Clone | Flutter | Challenge 1 | Part 1
Hey Guys i hope you are okey i'm a new flutter developer i tried to clone this app ...........please rate my work and tell me some adviceshttps://www.youtube.com/watch?v=522VhXk7BuA
October 24, 2019 at 01:05AM by UpstairsDiscipline1
https://ift.tt/31IhYLp
YouTube
  
  Avito UI Clone | Flutter | Challenge 1 | Part 1
  Thanks for Watching 😃
If you liked the video, then please show me by hitting the like button for video and show some love by giving star ⭐ on Github.
Source Code : https://github.com/Binary-Legion
Don't forget to Subscribe for more videos like this, Like…
  If you liked the video, then please show me by hitting the like button for video and show some love by giving star ⭐ on Github.
Source Code : https://github.com/Binary-Legion
Don't forget to Subscribe for more videos like this, Like…
New tweet from FlutterDev:
DashCast, the Flutter podcasting app, is back!
Join @bouncingsheep and @mjohnsullivan as they work on DashCast and wax lyrical about RSS feeds, sharing data across screens, and streaming playback. 😎#BoringShow
Watch now → https://t.co/HKbS4Hddd6 pic.twitter.com/gsLBz3MX9a— Flutter (@FlutterDev) October 23, 2019
October 24, 2019 at 01:45AM
http://twitter.com/FlutterDev/status/1187153222131240966
  
  DashCast, the Flutter podcasting app, is back!
Join @bouncingsheep and @mjohnsullivan as they work on DashCast and wax lyrical about RSS feeds, sharing data across screens, and streaming playback. 😎#BoringShow
Watch now → https://t.co/HKbS4Hddd6 pic.twitter.com/gsLBz3MX9a— Flutter (@FlutterDev) October 23, 2019
October 24, 2019 at 01:45AM
http://twitter.com/FlutterDev/status/1187153222131240966
Twitter
  
  Emily Fortuna (@bouncingsheep) | Twitter
  The latest Tweets from Emily Fortuna (@bouncingsheep). Known human, actor and computer scientist. I tweet about many things. Generally she/her. Seattle
  New post on /r/flutterdev subreddit:
super.initState - before or after
Where should all the init code go? Before or after super.initState and why?
October 24, 2019 at 04:41AM by bananaofakind
https://ift.tt/2N3eyNW
  
  super.initState - before or after
Where should all the init code go? Before or after super.initState and why?
October 24, 2019 at 04:41AM by bananaofakind
https://ift.tt/2N3eyNW
reddit
  
  super.initState - before or after
  A subreddit for Google's crossplatform UI toolkit.
  New post on Flutter Dev Google group:
ERROR:flutter/lib/ui/ui_dart_state.cc(148)] Unhandled Exception: type '_InternalLinkedHashMap
factory Beer.fromJson(Map
  ERROR:flutter/lib/ui/ui_dart_state.cc(148)] Unhandled Exception: type '_InternalLinkedHashMap
factory Beer.fromJson(Map
New post on /r/flutterdev subreddit:
Flutter Tutorial: Crypto Currency App UI PART TWO
https://ift.tt/2N7aufv
October 24, 2019 at 10:00AM by cybdom
https://ift.tt/2MIs7Uc
  
  Flutter Tutorial: Crypto Currency App UI PART TWO
https://ift.tt/2N7aufv
October 24, 2019 at 10:00AM by cybdom
https://ift.tt/2MIs7Uc
Flutter Tutorial by Cybdom Tech
  
  Flutter Tutorial: Crypto Currency App UI PART TWO
  After the positive review for part one of this tutorial, I decided to follow up with part two where we will build together this screen. Source code: https://github.com/cybdom/crypto_app AppBar: Let’s start here, after setting our scaffold color to white we…