New post on Flutter Dev Google group:
Issues on new Flutter Project
What are these errors and warnings in New Flutter Project .Please Help....
March 20, 2020 at 04:10PM by rakesh lorentz
https://ift.tt/3dbn9dL
Issues on new Flutter Project
What are these errors and warnings in New Flutter Project .Please Help....
March 20, 2020 at 04:10PM by rakesh lorentz
https://ift.tt/3dbn9dL
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:
Errors and warnings in Flutter
Please some one help me to get rid of this errors and warnings . Steps already taken by me to remove these issues: 1) Flutter SDK reinstalled 2) Created New Flutter Project 3) flutter pub get 4) flutter clean 5) Dart extension reinstalled 6) Set Path for flutter ZSH for Catalina OS.
March 20, 2020 at 04:42PM by rakesh lorentz
https://ift.tt/3ajkw7y
Errors and warnings in Flutter
Please some one help me to get rid of this errors and warnings . Steps already taken by me to remove these issues: 1) Flutter SDK reinstalled 2) Created New Flutter Project 3) flutter pub get 4) flutter clean 5) Dart extension reinstalled 6) Set Path for flutter ZSH for Catalina OS.
March 20, 2020 at 04:42PM by rakesh lorentz
https://ift.tt/3ajkw7y
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:
VelocityX - A minimalistic flutter framework released.
https://ift.tt/2IZPkhV
March 20, 2020 at 05:36PM by imthepk
https://ift.tt/3ddJibr
VelocityX - A minimalistic flutter framework released.
https://ift.tt/2IZPkhV
March 20, 2020 at 05:36PM by imthepk
https://ift.tt/3ddJibr
velocity-x.web.app
VelocityX
A new Flutter project.
New post on /r/flutterdev subreddit:
The new 'animations' library explained - gskinner blog
https://ift.tt/2U7xDDk
March 20, 2020 at 05:25PM by gskinner_team
https://ift.tt/2xcLbEy
The new 'animations' library explained - gskinner blog
https://ift.tt/2U7xDDk
March 20, 2020 at 05:25PM by gskinner_team
https://ift.tt/2xcLbEy
gskinner blog
Flutter: The new 'animations' library explained - gskinner blog
The Flutter team recently dropped a great new animations package, based on the new Material 2 design spec, fittingly called "animations". SharedAxis
New tweet from FlutterDev:
A #GoogleIO update: Out of concern for the health and safety of our developers, employees, and local communities — and in line with “shelter in place” requirements by the local Bay Area government — we sadly will not be holding an I/O event in any capacity this year. (1/3)— Google Developers (@googledevs) March 20, 2020
March 20, 2020 at 08:06PM
http://twitter.com/FlutterDev/status/1241078729087975425
A #GoogleIO update: Out of concern for the health and safety of our developers, employees, and local communities — and in line with “shelter in place” requirements by the local Bay Area government — we sadly will not be holding an I/O event in any capacity this year. (1/3)— Google Developers (@googledevs) March 20, 2020
March 20, 2020 at 08:06PM
http://twitter.com/FlutterDev/status/1241078729087975425
New post on /r/flutterdev subreddit:
Flutter SVG Animation
Hi,I have a project that i’m working on that requires Indoor Navigation. I was given SVG floor maps and I am required to draw a path based from a room to another as well as highlight washrooms and emergency exits when asked.I have to use flutter.I really need some help or insights on how i can solve this!Anyone with any ideas?Thank you so much!
March 20, 2020 at 08:27PM by justAskinz
https://ift.tt/2WrSdjs
Flutter SVG Animation
Hi,I have a project that i’m working on that requires Indoor Navigation. I was given SVG floor maps and I am required to draw a path based from a room to another as well as highlight washrooms and emergency exits when asked.I have to use flutter.I really need some help or insights on how i can solve this!Anyone with any ideas?Thank you so much!
March 20, 2020 at 08:27PM by justAskinz
https://ift.tt/2WrSdjs
reddit
Flutter SVG Animation
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Why did Flutter choose Dart?
Why did Flutter go with Dart instead of TypeScript or JavaScript for example?I enjoy flutter but do you see flutter being supported long term and not being abandoned by Google like some other projects they had back in the days?
March 20, 2020 at 09:37PM by maxahd
https://ift.tt/2U7awc3
Why did Flutter choose Dart?
Why did Flutter go with Dart instead of TypeScript or JavaScript for example?I enjoy flutter but do you see flutter being supported long term and not being abandoned by Google like some other projects they had back in the days?
March 20, 2020 at 09:37PM by maxahd
https://ift.tt/2U7awc3
reddit
Why did Flutter choose Dart?
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Is anyone REALLY using Provider in a non-trivial app with async dependencies?
(There are older threads with similar titles, like this one with no conclusive or interesting answers.)I am trying to use scoped DI in a fairly complex app, so I chose Provider.The app requires a variety of "global" services in order to run, so the registration pattern goes along these lines:```dart runApp(MultiProvider( providers: [ //... ], child: MyApp(), ));class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { if (context.watch<DataLoading>().value) { return const CircularProgressIndicator(); } return MaterialApp( //... ```Pretty much like u/bizz84 does here.Most of my services require async initialization (some of them open Hive boxes), for which
March 20, 2020 at 09:48PM by frank06_
https://ift.tt/3a9DKwD
Is anyone REALLY using Provider in a non-trivial app with async dependencies?
(There are older threads with similar titles, like this one with no conclusive or interesting answers.)I am trying to use scoped DI in a fairly complex app, so I chose Provider.The app requires a variety of "global" services in order to run, so the registration pattern goes along these lines:```dart runApp(MultiProvider( providers: [ //... ], child: MyApp(), ));class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { if (context.watch<DataLoading>().value) { return const CircularProgressIndicator(); } return MaterialApp( //... ```Pretty much like u/bizz84 does here.Most of my services require async initialization (some of them open Hive boxes), for which
FutureProvider
is needed. But they also depend on other asynchronous services, which require the use of ProxyProvider
and the update
callback.FutureProxyProvider
does not exist and Remi wasn't able to come up with an API for this usecase.So something as simple as:dart int a = await Future.value(42); num b = await Future.value(a + 0.2); String c = b.toString();
turns out to be hair-pulling in the Provider world.dart MultiProvider( providers: [ FutureProvider<int>(create: (_) => Future.value(42)), FutureProvider<num>(create: (context) => Future.value(context.watch<int>() + 0.2)), ProxyProvider<num, String>(update: (_, b, __) => b.toString()), ]
(The updated value of num
never reaches the String
provider.)Sure, I could use await
like the following:```dart runApp(CircularProgressIndicator());// do ALL async work here await getApplicationDocumentsDirectory(); await service1(); await service2(); await service3();runApp(MultiProvider(syncSetup(...), child: MyApp())); ```but this would not be the Flutter way, as Remi put it: "Providers will require you to always be ready to draw.". This means that your data loading widget, or CircularProgressIndicator()
should be in the build method of your app widget.u/remirousselet is a blessing with all his fantastic open source work, but practical and real-world examples of Provider is something I've yet to see. "Anyone using Provider in production?" doesn't add much at all.Is anyone using it in this fashion and can share their async setup? Any good alternative or perhaps some resource I have missed?March 20, 2020 at 09:48PM by frank06_
https://ift.tt/3a9DKwD
reddit
Example of MultiProvider in a real-world app?
I am trying to wrap my head around Provider and MultiProvider. But the recent switch to Provider v3 plus their confusing README leaves me wanting...
New post on /r/flutterdev subreddit:
How to use Change Notifier Proxy Provider with Cloud Firestore | Flutter
https://youtu.be/wnF2kKf-Irc
March 20, 2020 at 11:08PM by thehappyharis
https://ift.tt/2Utaqut
How to use Change Notifier Proxy Provider with Cloud Firestore | Flutter
https://youtu.be/wnF2kKf-Irc
March 20, 2020 at 11:08PM by thehappyharis
https://ift.tt/2Utaqut
YouTube
How to use Change Notifier Proxy Provider with Cloud Firestore | Flutter
Gave an explanation on Change Notifier Proxy Provider. Change Notifier is not able to get updated by external data, examples are api services or Firestore. P...
New post on /r/flutterdev subreddit:
In_App_Purchase - Is it possible to check purchase from Play Store on iOS device and vice versa?
I'm a hobbyist developer, using Flutter for about a year now, Android for a couple years before that. I have couple apps on both stores, but I don't want my users to have to rebuy the app if they switch platforms. I've been unable to find anything about this issue. I save their purchase token to Firestore under their user when they make the purchase. Anyone know a way to do this?
March 20, 2020 at 11:28PM by bhultquist84
https://ift.tt/2wsvo4p
In_App_Purchase - Is it possible to check purchase from Play Store on iOS device and vice versa?
I'm a hobbyist developer, using Flutter for about a year now, Android for a couple years before that. I have couple apps on both stores, but I don't want my users to have to rebuy the app if they switch platforms. I've been unable to find anything about this issue. I save their purchase token to Firestore under their user when they make the purchase. Anyone know a way to do this?
March 20, 2020 at 11:28PM by bhultquist84
https://ift.tt/2wsvo4p
reddit
In_App_Purchase - Is it possible to check purchase from Play Store...
I'm a hobbyist developer, using Flutter for about a year now, Android for a couple years before that. I have couple apps on both stores, but I...
New post on /r/flutterdev subreddit:
enviro_sensors - a package for using native enviroment sensors !
Hey guys, so a couple of weeks ago I wanted to make an altimeter with flutter (an altimeter is a device that estimates elevation changes based on changes in air pressure) and couldn't find a plugin that enables the usage of the device's pressure sensor.I asked r/FlutterDev why isn't there such a plugin yet and was encouraged by some of you guys to write one of my own, and so I did :) in the current version you can access all of Android Enviroment Sensors , iOS will follow in the future (unless one of you guys wants to add an implementation on your own, the code is on this github repository).here's a link to the package:https://pub.dev/packages/enviro_sensorsthe altimeter I built is also on github and on Google Play, although it is much less interesting.if you have any comments / suggestions / questions, I'll be happy to read them in the comments.I will emphasize that I am by no means a native developper nor am I proficient in java, so be wary of that if and when you review the code :>
March 21, 2020 at 12:35AM by BarbDart
https://ift.tt/2WwIuII
enviro_sensors - a package for using native enviroment sensors !
Hey guys, so a couple of weeks ago I wanted to make an altimeter with flutter (an altimeter is a device that estimates elevation changes based on changes in air pressure) and couldn't find a plugin that enables the usage of the device's pressure sensor.I asked r/FlutterDev why isn't there such a plugin yet and was encouraged by some of you guys to write one of my own, and so I did :) in the current version you can access all of Android Enviroment Sensors , iOS will follow in the future (unless one of you guys wants to add an implementation on your own, the code is on this github repository).here's a link to the package:https://pub.dev/packages/enviro_sensorsthe altimeter I built is also on github and on Google Play, although it is much less interesting.if you have any comments / suggestions / questions, I'll be happy to read them in the comments.I will emphasize that I am by no means a native developper nor am I proficient in java, so be wary of that if and when you review the code :>
March 21, 2020 at 12:35AM by BarbDart
https://ift.tt/2WwIuII
Android Developers
Environment sensors | Android Developers
New post on /r/flutterdev subreddit:
Flutter Full Project | Flutter Blog - Ep. 3 - Logging in, Home Screen, Bottom Sheet
https://www.youtube.com/watch?v=k7-uKniCH-E
March 21, 2020 at 03:14AM by anthOlei
https://ift.tt/3aeOAl6
Flutter Full Project | Flutter Blog - Ep. 3 - Logging in, Home Screen, Bottom Sheet
https://www.youtube.com/watch?v=k7-uKniCH-E
March 21, 2020 at 03:14AM by anthOlei
https://ift.tt/3aeOAl6
YouTube
Flutter Full Project | Flutter Blog - Ep. 3 - Logging in, Home Screen, Bottom Sheet
In this episode of flutter blog tutorial series for beginners / mid - level coders, we code logging in, we finish out the home screen, and we start a bottom ...
New post on /r/flutterdev subreddit:
Generating Dart REST API client libraries using OpenAPI Generator
https://ift.tt/33AD1Sr
March 21, 2020 at 10:16AM by Elixane
https://ift.tt/2WucDs5
Generating Dart REST API client libraries using OpenAPI Generator
https://ift.tt/33AD1Sr
March 21, 2020 at 10:16AM by Elixane
https://ift.tt/2WucDs5
Medium
Generating Dart REST API client libraries using OpenAPI Generator
REST APIs are ubiquitous in modern software development, and many applications will need to integrate them in order to connect to external…
New post on /r/flutterdev subreddit:
Going Walkabout - Flutter flagging of inappropriate content
https://youtu.be/HWkjUcJjjH4
March 20, 2020 at 06:04PM by aadjemonkeyrock
https://ift.tt/3bcMUII
Going Walkabout - Flutter flagging of inappropriate content
https://youtu.be/HWkjUcJjjH4
March 20, 2020 at 06:04PM by aadjemonkeyrock
https://ift.tt/3bcMUII
YouTube
Going Walkabout - Flutter flagging of inappropriate content
In this Flutter episode I implement the function for flagging inappropriate content. For Appstore approval it's a requirement to have a good flagging mechani...
New post on /r/flutterdev subreddit:
Real-time Object Detection App with Flutter and YOLO v3
Hello everyone 👋I have made a real-time object detection App based on Paddle-Lite framework. Paddle-Lite is a cross platform DL inference engine made by Baidu. It allows you run your model on your phone, Raspberry Pi and other devices with high performance. The demo is to detect if a person wearing a mask. Hope it can help you somehow.Thanks you all.Here's the GitHub link: https://github.com/KernelErr/realtime-object-detector
March 21, 2020 at 09:46AM by KernelErr
https://ift.tt/2QzXZMh
Real-time Object Detection App with Flutter and YOLO v3
Hello everyone 👋I have made a real-time object detection App based on Paddle-Lite framework. Paddle-Lite is a cross platform DL inference engine made by Baidu. It allows you run your model on your phone, Raspberry Pi and other devices with high performance. The demo is to detect if a person wearing a mask. Hope it can help you somehow.Thanks you all.Here's the GitHub link: https://github.com/KernelErr/realtime-object-detector
March 21, 2020 at 09:46AM by KernelErr
https://ift.tt/2QzXZMh
GitHub
KernelErr/realtime-object-detector
Flutter real-time object detection App with Paddle-Lite and YOLO v3. - KernelErr/realtime-object-detector
New post on /r/flutterdev subreddit:
GraphQL + Flutter
https://ift.tt/33CcOTI
March 21, 2020 at 11:02AM by shivanchalpandey
https://ift.tt/3dh6ZPX
GraphQL + Flutter
https://ift.tt/33CcOTI
March 21, 2020 at 11:02AM by shivanchalpandey
https://ift.tt/3dh6ZPX
Medium
GraphQL + Flutter
What is GraphQL: It is a query language that allows us to create queries that will be executing on the server... Not Getting this bookish…
New post on /r/flutterdev subreddit:
Firebase Log In with Provider
https://youtu.be/n7385_mufOI
March 21, 2020 at 12:10PM by craetornetwork
https://ift.tt/3bh6svG
Firebase Log In with Provider
https://youtu.be/n7385_mufOI
March 21, 2020 at 12:10PM by craetornetwork
https://ift.tt/3bh6svG
YouTube
Firebase Log In With Provider | Complete Flutter App #5
Log In With Provider | Complete Flutter App #5
Since we got the UI finished, its finally time to start implementing some logical code. This video goes over authentication with firebase but also being handled by Provider. In my opinion this is a very clean…
Since we got the UI finished, its finally time to start implementing some logical code. This video goes over authentication with firebase but also being handled by Provider. In my opinion this is a very clean…
New post on /r/flutterdev subreddit:
Flutter Doctor
I want to install flutter in windows but i get this error in android licenses:[√] Flutter (Channel stable, v1.12.13+hotfix.8, on Microsoft Windows [version 10.0.16299.214], locale fr-DZ)[!] Android toolchain - develop for Android devices (Android SDK version 29.0.3)X Android license status unknown.Try re-installing or updating your Android SDK Manager.See https://developer.android.com/studio/#downloads or visit https://flutter.dev/setup/#android-setup for detailedinstructions.[√] Android Studio (version 3.6)[!] IntelliJ IDEA Community Edition (version 2018.3)X Flutter plugin not installed; this adds Flutter specific functionality.[√] VS Code (version 1.43.1)[!] Connected device! No devices available! Doctor found issues in 3 categories.If I use this command: flutter doctor --android-licenses I get:C:\Users\HMIMI-PC>flutter doctor --android-licensesA newer version of the Android SDK is required. To update, run:C:\Users\HMIMI-PC\AppData\Local\Android\sdk\tools\bin\sdkmanager --updateif i run itC:\Users\HMIMI-PC>C:\Users\HMIMI-PC\AppData\Local\Android\sdk\tools\bin\sdkmanager --updateException in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/annotation/XmlSchemaat com.android.repository.api.SchemaModule$SchemaModuleVersion.<init>(SchemaModule.java:156)at com.android.repository.api.SchemaModule.<init>(SchemaModule.java:75)at com.android.sdklib.repository.AndroidSdkHandler.<clinit>(AndroidSdkHandler.java:81)at com.android.sdklib.tool.sdkmanager.SdkManagerCli.main(SdkManagerCli.java:73)at com.android.sdklib.tool.sdkmanager.SdkManagerCli.main(SdkManagerCli.java:48)Caused by: java.lang.ClassNotFoundException: javax.xml.bind.annotation.XmlSchemaat java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:602)at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)i tried everything and i couldn't solve itCan anyone help me?
March 21, 2020 at 02:04PM by hmimi00
https://ift.tt/3966yEH
Flutter Doctor
I want to install flutter in windows but i get this error in android licenses:[√] Flutter (Channel stable, v1.12.13+hotfix.8, on Microsoft Windows [version 10.0.16299.214], locale fr-DZ)[!] Android toolchain - develop for Android devices (Android SDK version 29.0.3)X Android license status unknown.Try re-installing or updating your Android SDK Manager.See https://developer.android.com/studio/#downloads or visit https://flutter.dev/setup/#android-setup for detailedinstructions.[√] Android Studio (version 3.6)[!] IntelliJ IDEA Community Edition (version 2018.3)X Flutter plugin not installed; this adds Flutter specific functionality.[√] VS Code (version 1.43.1)[!] Connected device! No devices available! Doctor found issues in 3 categories.If I use this command: flutter doctor --android-licenses I get:C:\Users\HMIMI-PC>flutter doctor --android-licensesA newer version of the Android SDK is required. To update, run:C:\Users\HMIMI-PC\AppData\Local\Android\sdk\tools\bin\sdkmanager --updateif i run itC:\Users\HMIMI-PC>C:\Users\HMIMI-PC\AppData\Local\Android\sdk\tools\bin\sdkmanager --updateException in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/annotation/XmlSchemaat com.android.repository.api.SchemaModule$SchemaModuleVersion.<init>(SchemaModule.java:156)at com.android.repository.api.SchemaModule.<init>(SchemaModule.java:75)at com.android.sdklib.repository.AndroidSdkHandler.<clinit>(AndroidSdkHandler.java:81)at com.android.sdklib.tool.sdkmanager.SdkManagerCli.main(SdkManagerCli.java:73)at com.android.sdklib.tool.sdkmanager.SdkManagerCli.main(SdkManagerCli.java:48)Caused by: java.lang.ClassNotFoundException: javax.xml.bind.annotation.XmlSchemaat java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:602)at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)i tried everything and i couldn't solve itCan anyone help me?
March 21, 2020 at 02:04PM by hmimi00
https://ift.tt/3966yEH
Android Developers
Download Android Studio & App Tools - Android Developers
Android Studio provides app builders with an integrated development environment (IDE) optimized for Android apps. Download Android Studio today.
New post on Flutter Dev Google group:
How to hide generated dart files in Android Studio
https://ift.tt/2xi8igR
March 21, 2020 at 02:25PM by Mutlu Şimşek
https://ift.tt/33CwAi3
How to hide generated dart files in Android Studio
https://ift.tt/2xi8igR
March 21, 2020 at 02:25PM by Mutlu Şimşek
https://ift.tt/33CwAi3
Stack Overflow
How to hide generated dart files in Android Studio
Is it possible to hide generated dart files in Android Studio especially *.g.dart files?
New post on /r/flutterdev subreddit:
This plugin helps you share images to social media via your flutter app
This Flutter plugin social_share is what you need to create a great UX with sharing options like sharing on Instagram & Facebook stories, twitter, copy to clipboard, WhatsApp and native options to share. Available for Android/iOS.
March 21, 2020 at 03:42PM by B1NARYisHere
https://ift.tt/2UtfWgi
This plugin helps you share images to social media via your flutter app
This Flutter plugin social_share is what you need to create a great UX with sharing options like sharing on Instagram & Facebook stories, twitter, copy to clipboard, WhatsApp and native options to share. Available for Android/iOS.
March 21, 2020 at 03:42PM by B1NARYisHere
https://ift.tt/2UtfWgi
Dart packages
social_share | Flutter package
Wide variety of sharing options you'll need to share directly to certain well-known apps.