New post on /r/flutterdev subreddit:
#Flutter: Http and Error Handling
https://youtu.be/rIL4U5Fl3tM
October 01, 2020 at 09:11AM by ibhavikmakwana
https://ift.tt/3na6gF0
  
  #Flutter: Http and Error Handling
https://youtu.be/rIL4U5Fl3tM
October 01, 2020 at 09:11AM by ibhavikmakwana
https://ift.tt/3na6gF0
YouTube
  
  Flutter: Http Network call and Error Handling
  In this Live stream We will be learning, How to make an API call using HTTP in Flutter, we will also see how to tackel down the different Errors while making...
  New post on Flutter Dev Google group:
[Windows] Flutter and Dart plugins not found
Win 10 Pro, build 19041.508 When I run flutter doctor -v, the output is: [√] Flutter (Channel stable, 1.20.4, on Microsoft Windows [Version 10.0.19041.508], locale de-DE) • Flutter version 1.20.4 at c:\DEV\flutter • Framework revision fba99f6cf9 (2 weeks ago), 2020-09-14 15:32:52
October 01, 2020 at 09:51AM by Denny Kluge
https://ift.tt/2ETIjAQ
  
  [Windows] Flutter and Dart plugins not found
Win 10 Pro, build 19041.508 When I run flutter doctor -v, the output is: [√] Flutter (Channel stable, 1.20.4, on Microsoft Windows [Version 10.0.19041.508], locale de-DE) • Flutter version 1.20.4 at c:\DEV\flutter • Framework revision fba99f6cf9 (2 weeks ago), 2020-09-14 15:32:52
October 01, 2020 at 09:51AM by Denny Kluge
https://ift.tt/2ETIjAQ
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:
figma to flutter (yes, there was some other projects, previously. but this one really works.)
https://github.com/bridgedxyz/figmaI started, and will complete this plugin and the code export quality to human level, until i develop any other products, From now on I will develop all apps using only this plugin.It supports textStyle Theme.of().textTheme.~~ style,supports dart formatting. (never done before)and so on...(STAR it on github!!)If anyone is interested in building this super helpful tool with me, please contact me on github.https://github.com/softmarshmallow
October 01, 2020 at 11:20AM by softmarshmallow
https://ift.tt/36qLr2j
  
  figma to flutter (yes, there was some other projects, previously. but this one really works.)
https://github.com/bridgedxyz/figmaI started, and will complete this plugin and the code export quality to human level, until i develop any other products, From now on I will develop all apps using only this plugin.It supports textStyle Theme.of().textTheme.~~ style,supports dart formatting. (never done before)and so on...(STAR it on github!!)If anyone is interested in building this super helpful tool with me, please contact me on github.https://github.com/softmarshmallow
October 01, 2020 at 11:20AM by softmarshmallow
https://ift.tt/36qLr2j
GitHub
  
  bridgedxyz/figma
  ✏️ Figma to flutter plugin ©bridged.xyz. Contribute to bridgedxyz/figma development by creating an account on GitHub.
  New post on /r/flutterdev subreddit:
Flutter Tutorial - Building a Production App From Scratch
https://youtu.be/aiTTClKJbnw
October 01, 2020 at 12:15PM by immacoder
https://ift.tt/3jm2KFh
  
  Flutter Tutorial - Building a Production App From Scratch
https://youtu.be/aiTTClKJbnw
October 01, 2020 at 12:15PM by immacoder
https://ift.tt/3jm2KFh
YouTube
  
  Flutter Tutorial - Building a Production App From Scratch
  Learn how to build well planned and fully tested Flutter apps from scratch. This will guide you through planning what should go into the app, how to stay organized, all the way to fully testing your application. 
✏️ Course by Tadas Petra. Check out his channel:…
  ✏️ Course by Tadas Petra. Check out his channel:…
New post on /r/flutterdev subreddit:
Flutter tutorial: Using smartphone sensors to display a speedometer
https://ift.tt/3cNrAvn
October 01, 2020 at 12:42PM by flutterclutter
https://ift.tt/3kWHQgq
  
  Flutter tutorial: Using smartphone sensors to display a speedometer
https://ift.tt/3cNrAvn
October 01, 2020 at 12:42PM by flutterclutter
https://ift.tt/3kWHQgq
Flutter Clutter
  
  Flutter tutorial: Smartphone movement speedometer
  How to display the accelerometer sensor value of the smartphone.
  New post on Flutter Dev Google group:
Read Json List--how to call on specific value
Hi everyone, I'm new to flutter, and am still learning how to fetch and read data using mysql and php. I could successfully make an api call using the code below. //... body: listResponse==null?Container(): Text(listResponse.toString(), //... I am fetching data from a mysql table with 3 columns:
October 01, 2020 at 02:55PM by Andrew Villegas
https://ift.tt/2Gqi45q
  
  Read Json List--how to call on specific value
Hi everyone, I'm new to flutter, and am still learning how to fetch and read data using mysql and php. I could successfully make an api call using the code below. //... body: listResponse==null?Container(): Text(listResponse.toString(), //... I am fetching data from a mysql table with 3 columns:
October 01, 2020 at 02:55PM by Andrew Villegas
https://ift.tt/2Gqi45q
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:
Localization within packages
Within our company I plan to release a package library containing a suite of widgets to our various development teams. I need these widgets to contain their own localization strings.There are a few dozen localization packages for use with Flutter, including i18n which is blessed by the Flutter team. Nearly all of these localization packages seem to be for adding localization to the Flutter App, not a Flutter package.Does anyone have patterns to share or open source projects they can point to which make use of i18n, or some other package which shows how they can be applied to supporting packages, and not the app itself? I prefer to avoid using State Management libraries to inform my widget of a changed Locale object, because I don’t want to force an invasive dependency on those developers who simply want to consume my widget.
October 01, 2020 at 03:06PM by oravecz
https://ift.tt/34lJ52i
  
  Localization within packages
Within our company I plan to release a package library containing a suite of widgets to our various development teams. I need these widgets to contain their own localization strings.There are a few dozen localization packages for use with Flutter, including i18n which is blessed by the Flutter team. Nearly all of these localization packages seem to be for adding localization to the Flutter App, not a Flutter package.Does anyone have patterns to share or open source projects they can point to which make use of i18n, or some other package which shows how they can be applied to supporting packages, and not the app itself? I prefer to avoid using State Management libraries to inform my widget of a changed Locale object, because I don’t want to force an invasive dependency on those developers who simply want to consume my widget.
October 01, 2020 at 03:06PM by oravecz
https://ift.tt/34lJ52i
reddit
  
  Localization within packages
  Within our company I plan to release a package library containing a suite of widgets to our various development teams. I need these widgets to...
  New post on /r/flutterdev subreddit:
File Storage Application using AWS | Authentication, Storage, Analytics | Full Tutorial
https://www.youtube.com/watch?v=m2Oc_gJEvw0
October 01, 2020 at 03:23PM by PossibleFail2
https://ift.tt/3jlC2gc
  File Storage Application using AWS | Authentication, Storage, Analytics | Full Tutorial
https://www.youtube.com/watch?v=m2Oc_gJEvw0
October 01, 2020 at 03:23PM by PossibleFail2
https://ift.tt/3jlC2gc
New post on Flutter Dev Google group:
Incorrect use of ParentDataWidget issue
*Incorrect use of ParentDataWidget* this Debug Console Error will generate issue in Release Mode APK ? In Debug Mode there is no display Red Screen error but in release mode my app UI is freeze.
October 01, 2020 at 03:10PM by Maulik p
https://ift.tt/3n7BH30
  
  Incorrect use of ParentDataWidget issue
*Incorrect use of ParentDataWidget* this Debug Console Error will generate issue in Release Mode APK ? In Debug Mode there is no display Red Screen error but in release mode my app UI is freeze.
October 01, 2020 at 03:10PM by Maulik p
https://ift.tt/3n7BH30
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:
Physics-based Animations in Flutter | Designing your SpringSimulation
https://www.youtube.com/watch?v=O8Z5Ebx6xSY
October 01, 2020 at 04:15PM by THKPMatt
https://ift.tt/2Gscy1W
  
  Physics-based Animations in Flutter | Designing your SpringSimulation
https://www.youtube.com/watch?v=O8Z5Ebx6xSY
October 01, 2020 at 04:15PM by THKPMatt
https://ift.tt/2Gscy1W
YouTube
  
  Flutter SpringSimulation Walkthrough
  In this video, we explore Flutter's SpringSimulation utility and investigate how to configure it to get your desired behavior.
GitHub Repo:
https://github.com/AlabasterAxe/card_swiping_example
0:00 - Intro
0:14 - Recap
0:34 - App Overview
0:55 - Implementation…
  GitHub Repo:
https://github.com/AlabasterAxe/card_swiping_example
0:00 - Intro
0:14 - Recap
0:34 - App Overview
0:55 - Implementation…
New tweet from FlutterDev:
Flutter 💙 1.22 stable release!
🌟Support for iOS 14 and Android 11
🌟i18n and l10n support
🌟Google Maps
🌟WebView plugins
🌟New App Size tool, and more.
Thank you for your support -- we build Flutter for you,
Happy coding
Learn more → https://t.co/UA7EzSPhSd pic.twitter.com/aPiGgbYU16— Flutter (@FlutterDev) October 1, 2020
October 01, 2020 at 05:10PM
http://twitter.com/FlutterDev/status/1311684883157139458
  
  Flutter 💙 1.22 stable release!
🌟Support for iOS 14 and Android 11
🌟i18n and l10n support
🌟Google Maps
🌟WebView plugins
🌟New App Size tool, and more.
Thank you for your support -- we build Flutter for you,
Happy coding
Learn more → https://t.co/UA7EzSPhSd pic.twitter.com/aPiGgbYU16— Flutter (@FlutterDev) October 1, 2020
October 01, 2020 at 05:10PM
http://twitter.com/FlutterDev/status/1311684883157139458
Medium
  
  Announcing Flutter 1.22
  Supporting iOS 14 and Android 11, new i18n and l10n support, Google Maps and WebView plugins ready for production, a new App Size tool and…
  New post on /r/flutterdev subreddit:
AnimatedContainer - Deep Dive - Flutter (Tutorial)
https://www.youtube.com/watch?v=Mj-NGe7svAg
October 01, 2020 at 05:36PM by JohannesMilke
https://ift.tt/34jXz2m
  
  AnimatedContainer - Deep Dive - Flutter (Tutorial)
https://www.youtube.com/watch?v=Mj-NGe7svAg
October 01, 2020 at 05:36PM by JohannesMilke
https://ift.tt/34jXz2m
YouTube
  
  Flutter Tutorial - AnimatedContainer - Deep Dive
  A simple way of creating powerful animations in Flutter is by using the AnimatedContainer.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/animated_container_example…
  Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/animated_container_example…
New post on /r/flutterdev subreddit:
Announcing Flutter 1.22
https://ift.tt/3jjFPKQ
October 01, 2020 at 05:24PM by EngineerScientist
https://ift.tt/3cPWEKQ
  
  Announcing Flutter 1.22
https://ift.tt/3jjFPKQ
October 01, 2020 at 05:24PM by EngineerScientist
https://ift.tt/3cPWEKQ
Medium
  
  Announcing Flutter 1.22
  Supporting iOS 14 and Android 11, new i18n and l10n support, Google Maps and WebView plugins ready for production, a new App Size tool and…
  New post on /r/flutterdev subreddit:
Announcing Dart 2.10
https://ift.tt/2Si1PK8
October 01, 2020 at 05:23PM by EngineerScientist
https://ift.tt/3l8vRg1
  
  Announcing Dart 2.10
https://ift.tt/2Si1PK8
October 01, 2020 at 05:23PM by EngineerScientist
https://ift.tt/3l8vRg1
Medium
  
  Announcing Dart 2.10
  A new, unified dart tool for all core tasks. Also, an update on null safety timelines and migration principles.
  New post on /r/flutterdev subreddit:
Upload Image to Firebase Storage
https://ift.tt/3jmoe58
October 01, 2020 at 06:53PM by rrtutors
https://ift.tt/30GiBrh
  
  Upload Image to Firebase Storage
https://ift.tt/3jmoe58
October 01, 2020 at 06:53PM by rrtutors
https://ift.tt/30GiBrh
Rrtutors
  
  Upload Image to Firebase Storage - Flutter (Android & Ios)
  This post explain image uploading from Flutter app to Firebase Storage on Android and iOS platforms
  New post on /r/flutterdev subreddit:
Cross-platform app toolkit Flutter lead Tim Sneath aims Dart at an ambient computing future
https://ift.tt/30n573g
October 01, 2020 at 06:37PM by EngineerScientist
https://ift.tt/3cOCKA1
  
  Cross-platform app toolkit Flutter lead Tim Sneath aims Dart at an ambient computing future
https://ift.tt/30n573g
October 01, 2020 at 06:37PM by EngineerScientist
https://ift.tt/3cOCKA1
Theregister
  
  Cross-platform app toolkit Flutter lead Tim Sneath aims Dart at an ambient computing future
  'We've made a deliberate attempt to build something that can share source code across all these environments'
  New post on /r/flutterdev subreddit:
future_button - a package to show loading indicator in buttons
https://ift.tt/3jmPkZE
October 01, 2020 at 08:05PM by kekland322
https://ift.tt/3ilrJHF
  
  future_button - a package to show loading indicator in buttons
https://ift.tt/3jmPkZE
October 01, 2020 at 08:05PM by kekland322
https://ift.tt/3ilrJHF
GitHub
  
  kekland/future_button
  Customizable Material and Cupertino buttons with progress indicators and more - kekland/future_button
  New tweet from FlutterDev:
This free intro to Flutter series starts today at 4PM PST. For more info ↓ https://t.co/AJVjx5mYwR— Flutter (@FlutterDev) October 1, 2020
October 01, 2020 at 07:36PM
http://twitter.com/FlutterDev/status/1311721622991060992
  
  This free intro to Flutter series starts today at 4PM PST. For more info ↓ https://t.co/AJVjx5mYwR— Flutter (@FlutterDev) October 1, 2020
October 01, 2020 at 07:36PM
http://twitter.com/FlutterDev/status/1311721622991060992
Twitter
  
  Madusha Cooray 🇱🇰🇨🇭🇨🇦
  If you are interested in learning @FlutterDev welcome to join our free live introductory developer series. RSVP >> https://t.co/wsQCQHECRt Kickstarts on October 1st #FlutterDate #DeveloperStudentClubs @nikhilraichur91 @ShadRoi @nlycskn https://t.co/fY1n5onjow
  New post on /r/flutterdev subreddit:
Usage of Flutter for single platform(Android)
Is flutter a good choice if your app only have to support one platform(Android)?Most articles on the internet discusses platform portability as the main feature of Flutter, is there a good reason to use Flutter vs Kotlin?
October 01, 2020 at 08:58PM by bonega
https://ift.tt/30sCamK
  
  Usage of Flutter for single platform(Android)
Is flutter a good choice if your app only have to support one platform(Android)?Most articles on the internet discusses platform portability as the main feature of Flutter, is there a good reason to use Flutter vs Kotlin?
October 01, 2020 at 08:58PM by bonega
https://ift.tt/30sCamK
reddit
  
  Usage of Flutter for single platform(Android)
  Is flutter a good choice if your app only have to support one platform(Android)? Most articles on the internet discusses platform portability...
  New post on /r/flutterdev subreddit:
Using widget trees ?
I've recently decided to learn flutter development in my spare time, I was learning basic kotlin however decided to swap to flutter instead.I understand how widgets work mostly but when I put down more than one or two it starts to look confusing and if i accidentally delete a bracket it leaves me lost and im forced to restart.How do you understand the widget trees and dart in general when it looks so complicated compared to XML?
October 01, 2020 at 10:08PM by AceSynth
https://ift.tt/33iEBKc
  
  Using widget trees ?
I've recently decided to learn flutter development in my spare time, I was learning basic kotlin however decided to swap to flutter instead.I understand how widgets work mostly but when I put down more than one or two it starts to look confusing and if i accidentally delete a bracket it leaves me lost and im forced to restart.How do you understand the widget trees and dart in general when it looks so complicated compared to XML?
October 01, 2020 at 10:08PM by AceSynth
https://ift.tt/33iEBKc
reddit
  
  Using widget trees ?
  I've recently decided to learn flutter development in my spare time, I was learning basic kotlin however decided to swap to flutter instead. I...