New post on /r/flutterdev subreddit:
Has anyone tried this Zoom flutter plugin to add video conferencing capabilities?
Hi, I am new to flutter, learning a lot and enjoying the journey thus far. I would like to integrate video conferencing into my next project – a simple social game.I've found this from random Googling... https://github.com/decodedhealth/flutter_zoom_pluginHas anyone used it? What is your experience? I noticed it is not listed on pub.dev.How does that compare with other video conferencing plugin such as https://pub.dev/packages/agora_rtc_engine?
May 14, 2020 at 03:06AM by BeGoodOne
https://ift.tt/2yLO7tb
Has anyone tried this Zoom flutter plugin to add video conferencing capabilities?
Hi, I am new to flutter, learning a lot and enjoying the journey thus far. I would like to integrate video conferencing into my next project – a simple social game.I've found this from random Googling... https://github.com/decodedhealth/flutter_zoom_pluginHas anyone used it? What is your experience? I noticed it is not listed on pub.dev.How does that compare with other video conferencing plugin such as https://pub.dev/packages/agora_rtc_engine?
May 14, 2020 at 03:06AM by BeGoodOne
https://ift.tt/2yLO7tb
GitHub
GitHub - decodedhealth/flutter_zoom_plugin: Flutter plugin for zoom
Flutter plugin for zoom. Contribute to decodedhealth/flutter_zoom_plugin development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Adobe XD to Flutter!
Does the new Adobe XD plugin export only UI elements or all animations and screen interactions? Im a beginner in flutter and would love to be using XD to develop my UIs and focus on the backend in code. Looking forward to your support, thanks!
May 14, 2020 at 03:37AM by Dragon_W001
https://ift.tt/3ctveK4
Adobe XD to Flutter!
Does the new Adobe XD plugin export only UI elements or all animations and screen interactions? Im a beginner in flutter and would love to be using XD to develop my UIs and focus on the backend in code. Looking forward to your support, thanks!
May 14, 2020 at 03:37AM by Dragon_W001
https://ift.tt/3ctveK4
reddit
Adobe XD to Flutter!
Does the new Adobe XD plugin export only UI elements or all animations and screen interactions? Im a beginner in flutter and would love to be...
New post on /r/flutterdev subreddit:
iOS Flutter limitations for our app trending towards 1,000 downloads
Hi peeps,I wanted to share my team's experience building a Flutter app for iOS. As an intro, I used to be a Senior Software Eng @ Instagram at the core team (mostly working on perf, networking and background prefetch).Our overall experience was great! Really quick turnaround and amazing dev velocity. We did have to implement a flutter + native architecture for several reasons:- When we started, Flutter it was too new and we were unsure if it was going to be adopted widely. It's still unclear if it'll get as much support as Android gets from Google.- Certain libraries or SDKs not present or not mature in Flutter like: Stripe, Maps, Apple Pay, FacebookSDK or AWSPinpoint for analytics (our preferred backend solution).- Managing userSession + network calls from native. Personally, I like to have full control of caching data and making network requests the way I was used to given that our app manages health data.- In-app messaging capabilities. We integrate with Zendesk iOS sdk so we need to render that fully in native.Some other nits: video libraries limitations or need to implement crash reports (super easy) instead of having the iTunes out of the box solution for crashes. It's nice that the app doesn't close on a crash like in native tho!To summarize, if I had to imagine Flutter being used for IG, there's no way. For a social media app, the low level control is very much needed or if your app is heavy on data fetching and rendering. Other than that, we are *super happy* with our decision to have built on Flutter!P.S.: You can checkout some screenshots of the app in our webpage or searching for Base Tracking in the AppStore to see how it looks although you can't see much content in the app for non-members.
May 14, 2020 at 04:25AM by priegol
https://ift.tt/2T6ADiy
iOS Flutter limitations for our app trending towards 1,000 downloads
Hi peeps,I wanted to share my team's experience building a Flutter app for iOS. As an intro, I used to be a Senior Software Eng @ Instagram at the core team (mostly working on perf, networking and background prefetch).Our overall experience was great! Really quick turnaround and amazing dev velocity. We did have to implement a flutter + native architecture for several reasons:- When we started, Flutter it was too new and we were unsure if it was going to be adopted widely. It's still unclear if it'll get as much support as Android gets from Google.- Certain libraries or SDKs not present or not mature in Flutter like: Stripe, Maps, Apple Pay, FacebookSDK or AWSPinpoint for analytics (our preferred backend solution).- Managing userSession + network calls from native. Personally, I like to have full control of caching data and making network requests the way I was used to given that our app manages health data.- In-app messaging capabilities. We integrate with Zendesk iOS sdk so we need to render that fully in native.Some other nits: video libraries limitations or need to implement crash reports (super easy) instead of having the iTunes out of the box solution for crashes. It's nice that the app doesn't close on a crash like in native tho!To summarize, if I had to imagine Flutter being used for IG, there's no way. For a social media app, the low level control is very much needed or if your app is heavy on data fetching and rendering. Other than that, we are *super happy* with our decision to have built on Flutter!P.S.: You can checkout some screenshots of the app in our webpage or searching for Base Tracking in the AppStore to see how it looks although you can't see much content in the app for non-members.
May 14, 2020 at 04:25AM by priegol
https://ift.tt/2T6ADiy
Superpower
Superpower x Base
Base has been acquired by Superpower. All Base members are welcome to join today and skip the waitlist.
New post on /r/flutterdev subreddit:
It's super easy Use GestureDetector to detect gestures like tap, double Tap, press, LongPress, pan, drag, zoom, etc. (with video)
37th Flutter Tip on 100 days of Flutter.All those callbacks behave like onClick(){} on Button.
May 14, 2020 at 06:33AM by erluxman
https://ift.tt/2LrwyRI
It's super easy Use GestureDetector to detect gestures like tap, double Tap, press, LongPress, pan, drag, zoom, etc. (with video)
37th Flutter Tip on 100 days of Flutter.All those callbacks behave like onClick(){} on Button.
GestureDetector( onTap: //Tapped onDoubleTap: //"Double Tapped onLongPress: //Long Press onLongPressEnd: //Long Press ends onPanStart: // Pan Started onPanUpdate: //"Pan" + paninfo.delta onPanEnd: //Pan Ended onHorizontalDragStart: //"Drag" + draginfo child: Padding( padding: const EdgeInsets.all(48.0), child: InkWell( child: Card( child: Center( child: Text( currentGesture.toUpperCase(), style: TextStyle(fontSize: 20, fontWeight: FontWeight.w700), ), ), ), ), ), );See videohttps://twitter.com/erluxman/status/1260789123452936194Find all tips here :https://github.com/erluxman/awesomefluttertips
May 14, 2020 at 06:33AM by erluxman
https://ift.tt/2LrwyRI
Twitter
Laxman
Use GestureDetector to detect gestures like tap, double Tap, press, LongPress, pan, drag, zoom, etc. All those callbacks behave like onClick(){} on Button. try on Codepen https://t.co/y3gpSUnwpR #day38 #100DaysofFlutter #Flutter https://t.co/pEUbwPLdGC
New post on /r/flutterdev subreddit:
Flutter UI Neumorphic Music App Design
https://www.youtube.com/watch?v=iD1ikogf8sg
May 14, 2020 at 06:31AM by kevinton
https://ift.tt/3fKJYGl
Flutter UI Neumorphic Music App Design
https://www.youtube.com/watch?v=iD1ikogf8sg
May 14, 2020 at 06:31AM by kevinton
https://ift.tt/3fKJYGl
YouTube
Flutter UI - Neumorphic Design - Music Player App - Part 1 - SpeedCode - Protorix Code
A concept Music Player App Flutter UI speed code based on the latest Neumorphic Design.
Want us to develop your app?
Visit: https://protorix.com
Subscribe for more videos:
https://www.youtube.com/c/protorixcode
#flutter #eminem #neumorphism #flutterui…
Want us to develop your app?
Visit: https://protorix.com
Subscribe for more videos:
https://www.youtube.com/c/protorixcode
#flutter #eminem #neumorphism #flutterui…
New post on Flutter Dev Google group:
D/skia ( 4814): Shader compilation error
I've created a simple Flutter 1.9.1+hotfix.4 application using Android Studio 3.5.1. After adding successfully a new virtual device (Nexus 6) and tried to run my app, I got this error: Launching lib\main.dart on AOSP on IA Emulator in debug mode... Initializing gradle... Resolving dependencies...
May 14, 2020 at 06:53AM by Mehdi
https://ift.tt/2Z3gAFo
D/skia ( 4814): Shader compilation error
I've created a simple Flutter 1.9.1+hotfix.4 application using Android Studio 3.5.1. After adding successfully a new virtual device (Nexus 6) and tried to run my app, I got this error: Launching lib\main.dart on AOSP on IA Emulator in debug mode... Initializing gradle... Resolving dependencies...
May 14, 2020 at 06:53AM by Mehdi
https://ift.tt/2Z3gAFo
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:
Create a Textfiles with a Botton
If I have a bot that adds a textfield to a list, I have a problem because of the variables. How can I make it that I always have another variable with onChanged()? And I can retrieve this variable in the right order? I would be happy about an answer.
May 14, 2020 at 08:57AM by Jonas Riesen
https://ift.tt/3dNI469
Create a Textfiles with a Botton
If I have a bot that adds a textfield to a list, I have a problem because of the variables. How can I make it that I always have another variable with onChanged()? And I can retrieve this variable in the right order? I would be happy about an answer.
May 14, 2020 at 08:57AM by Jonas Riesen
https://ift.tt/3dNI469
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 Web | Add Firebase Authentication and Google Sign in
https://www.youtube.com/watch?v=0HLt1TYA600
May 14, 2020 at 09:38AM by postgor
https://ift.tt/2T0HGcf
Flutter Web | Add Firebase Authentication and Google Sign in
https://www.youtube.com/watch?v=0HLt1TYA600
May 14, 2020 at 09:38AM by postgor
https://ift.tt/2T0HGcf
YouTube
Flutter Web | Add Firebase Authentication and Google Sign in
In this tutorial we will add Firebase Authentication and Google Sign in to a Flutter web application. Beginner friendly.
Written Tutorial: https://levelup.gitconnected.com/using-firebase-in-flutter-web-4b99952180aa
Relevant Links:
Source code: https://…
Written Tutorial: https://levelup.gitconnected.com/using-firebase-in-flutter-web-4b99952180aa
Relevant Links:
Source code: https://…
New post on Flutter Dev Google group:
How do I find out package version
how do I find out there is an updated version of the package or not besides opening the pub.dev website itself?
May 14, 2020 at 11:49AM by Denis Ramdan
https://ift.tt/3dK9FoA
How do I find out package version
how do I find out there is an updated version of the package or not besides opening the pub.dev website itself?
May 14, 2020 at 11:49AM by Denis Ramdan
https://ift.tt/3dK9FoA
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:
Instagram style location picker for uploaded photos.
I'm trying to implement a feature that allows users to upload photos to Firestore. I also try to get the location of the image using IfIdTag. Is there a way to implement a sort of location picker similar to the one used in Instagram in case the user does not have the location data on the image?
May 14, 2020 at 11:03AM by skux159
https://ift.tt/3bptoZi
Instagram style location picker for uploaded photos.
I'm trying to implement a feature that allows users to upload photos to Firestore. I also try to get the location of the image using IfIdTag. Is there a way to implement a sort of location picker similar to the one used in Instagram in case the user does not have the location data on the image?
void _checkGPSData() async { log("Checking GPS data..."); Map<String, IfdTag> imgTags = await readExifFromBytes(File(_imageFile.path).readAsBytesSync()); if (imgTags.containsKey('GPS GPSLongitude')) { setState(() { _hasLocation = true; _imgLocation = exifGPSToGeoFirePoint(imgTags); }); } else { log("Image does not contain GPS data.");} }I am finding some location pickers online but they are strictly for google maps it seems.
May 14, 2020 at 11:03AM by skux159
https://ift.tt/3bptoZi
reddit
Instagram style location picker for uploaded photos.
I'm trying to implement a feature that allows users to upload photos to Firestore. I also try to get the location of the image using IfIdTag. Is...
New post on /r/flutterdev subreddit:
FLUTTER Tutorial - SLIVER APP BAR | Collapsing Toolbar - The Complete Flutter Beginner’s Course | #05
https://youtu.be/BUXGNGJs-Qk
May 14, 2020 at 12:02PM by Himdeve
https://ift.tt/2Wtt4V9
FLUTTER Tutorial - SLIVER APP BAR | Collapsing Toolbar - The Complete Flutter Beginner’s Course | #05
https://youtu.be/BUXGNGJs-Qk
May 14, 2020 at 12:02PM by Himdeve
https://ift.tt/2Wtt4V9
YouTube
FLUTTER Tutorial - SLIVER APP BAR | Collapsing Toolbar - The Complete Flutter Beginner’s Course #05
Flutter Tutorial - Sliver App Bar | Collapsing Toolbar - The Complete Flutter Beginner’s Course | #05
Introduction
Welcome to Himdeve development, where we are preparing the best tutorials to make your mobile application development easier and more efficient.…
Introduction
Welcome to Himdeve development, where we are preparing the best tutorials to make your mobile application development easier and more efficient.…
New post on Flutter Dev Google group:
Flutter channel stable is now ahead of channel beta?
I just find this curious... Stable: Flutter 1.17.1 using Dart 2.8.2 VS. Beta: Flutter 1.17.0-3.4.pre using Dart 2.8.1 What's that about? Anyone know? Something go wrong in Flutter release world?
May 14, 2020 at 02:16PM by Wayne Werner
https://ift.tt/2T4k8nb
Flutter channel stable is now ahead of channel beta?
I just find this curious... Stable: Flutter 1.17.1 using Dart 2.8.2 VS. Beta: Flutter 1.17.0-3.4.pre using Dart 2.8.1 What's that about? Anyone know? Something go wrong in Flutter release world?
May 14, 2020 at 02:16PM by Wayne Werner
https://ift.tt/2T4k8nb
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:
Data driven: measure how many times developers use hot reload?
Hey, my company is very data driven and we need presenting some numbers continuously.One of data we want to collect is how many times developers took advantage of hot reload and perhaps the duration of each hot reload operation.How could I prepare project or perhaps Android Studio itself to collect this data? Any ideas?
May 14, 2020 at 01:52PM by chrisrutkowski
https://ift.tt/2AsBnYN
Data driven: measure how many times developers use hot reload?
Hey, my company is very data driven and we need presenting some numbers continuously.One of data we want to collect is how many times developers took advantage of hot reload and perhaps the duration of each hot reload operation.How could I prepare project or perhaps Android Studio itself to collect this data? Any ideas?
May 14, 2020 at 01:52PM by chrisrutkowski
https://ift.tt/2AsBnYN
reddit
Data driven: measure how many times developers use hot reload?
Hey, my company is very data driven and we need presenting some numbers continuously. One of data we want to collect is how many times developers...
New post on /r/flutterdev subreddit:
Announcing Flutter Modular 1.2
https://ift.tt/2T5qy5l
May 14, 2020 at 04:02PM by irvine5k
https://ift.tt/2AnlwdP
Announcing Flutter Modular 1.2
https://ift.tt/2T5qy5l
May 14, 2020 at 04:02PM by irvine5k
https://ift.tt/2AnlwdP
Medium
Announcing Flutter Modular 1.2
We're glad for receiving support from developers around the world and maybe it can be the last article in Brazilian Portuguese but…
New post on Flutter Dev Google group:
query geopoints from firebase
hi guys . i have now succesfully managed to write geopoints inside my users collection ;) . i need to retrive them inside another map screen and show them as markers . i have tried many solutions but it crashes in the end . can anyone help me? thanks guys [image: Screenshot 2020-05-14 at
May 14, 2020 at 05:22PM by Error Place
https://ift.tt/2T6MJIl
query geopoints from firebase
hi guys . i have now succesfully managed to write geopoints inside my users collection ;) . i need to retrive them inside another map screen and show them as markers . i have tried many solutions but it crashes in the end . can anyone help me? thanks guys [image: Screenshot 2020-05-14 at
May 14, 2020 at 05:22PM by Error Place
https://ift.tt/2T6MJIl
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:
What is the best way to use an API in Flutter?
What I'm trying to do:A listview on home screen that lists the fixtures and odds This listview should be updated frequently to show an updated scheduleI'm using a sports API for getting relevant dataWhat I've already done:I wrote a class and methods to get the data from APIMy first method get fixtures from API (fixtureID, date, hometeam, awayteam)My second method get odds from API (same API, different link, fixtureID is common field)After getting two list, if fixtureID is same I combine the all information and fill my Fixture class instance and add all objects to a list to show them in my listview.What is the problem:If I'm getting a limited number of matches, there is no problem. When I'm trying to get a whole week list, I think due to fixtureID matching, it took a lot of time and my app freeze.Possible Solutions:I thought that maybe it is a good solution to feed Firebase with that API data instead of calling it while I am loading my home screen. With Firebase snapshot, I can listen the changes via stream and update my list. But I am not sure this is the best practice or not? If it is a good solution, what is the way of feeding firebase with my API data without crashing my app.Is there any idea?
May 14, 2020 at 05:34PM by cenkna
https://ift.tt/2Au1TRB
What is the best way to use an API in Flutter?
What I'm trying to do:A listview on home screen that lists the fixtures and odds This listview should be updated frequently to show an updated scheduleI'm using a sports API for getting relevant dataWhat I've already done:I wrote a class and methods to get the data from APIMy first method get fixtures from API (fixtureID, date, hometeam, awayteam)My second method get odds from API (same API, different link, fixtureID is common field)After getting two list, if fixtureID is same I combine the all information and fill my Fixture class instance and add all objects to a list to show them in my listview.What is the problem:If I'm getting a limited number of matches, there is no problem. When I'm trying to get a whole week list, I think due to fixtureID matching, it took a lot of time and my app freeze.Possible Solutions:I thought that maybe it is a good solution to feed Firebase with that API data instead of calling it while I am loading my home screen. With Firebase snapshot, I can listen the changes via stream and update my list. But I am not sure this is the best practice or not? If it is a good solution, what is the way of feeding firebase with my API data without crashing my app.Is there any idea?
May 14, 2020 at 05:34PM by cenkna
https://ift.tt/2Au1TRB
reddit
What is the best way to use an API in Flutter?
What I'm trying to do: A listview on home screen that lists the fixtures and odds This listview should be updated frequently to show an updated...
New tweet from FlutterDev:
👉Hotfixes to the stable channel.
We'll update the stable channel on a quarterly basis with feature updates. Subscribe to the flutter-announce group list if you publish an application using Flutter.
See hotfix updates → https://t.co/3IV2TvpYZ5 pic.twitter.com/xxSoutZRi2— Flutter (@FlutterDev) May 14, 2020
May 14, 2020 at 05:29PM
http://twitter.com/FlutterDev/status/1260955447030317056
👉Hotfixes to the stable channel.
We'll update the stable channel on a quarterly basis with feature updates. Subscribe to the flutter-announce group list if you publish an application using Flutter.
See hotfix updates → https://t.co/3IV2TvpYZ5 pic.twitter.com/xxSoutZRi2— Flutter (@FlutterDev) May 14, 2020
May 14, 2020 at 05:29PM
http://twitter.com/FlutterDev/status/1260955447030317056
GitHub
Hotfixes to the Stable Channel
Flutter makes it easy and fast to build beautiful apps for mobile and beyond. - flutter/flutter
New post on /r/flutterdev subreddit:
Matt Rešetár - The Powers of Immutable State - Flutter Warsaw #12
https://www.youtube.com/watch?v=4UePKj4vsK8&feature=share
May 14, 2020 at 06:37PM by Pixelreddit
https://ift.tt/2Au0uKL
Matt Rešetár - The Powers of Immutable State - Flutter Warsaw #12
https://www.youtube.com/watch?v=4UePKj4vsK8&feature=share
May 14, 2020 at 06:37PM by Pixelreddit
https://ift.tt/2Au0uKL
YouTube
Matt Rešetár - The Powers of Immutable State - Flutter Warsaw #12
Flutter Warsaw Meetup #12
Managing a state can be a stressful ordeal if you dive into it without any thought. This kind of monstrous code can be tamed with the principles of immutability. And as if cleaning your code wasn't enough in itself, immutable state…
Managing a state can be a stressful ordeal if you dive into it without any thought. This kind of monstrous code can be tamed with the principles of immutability. And as if cleaning your code wasn't enough in itself, immutable state…
New post on Flutter Dev Google group:
Flutter send variable to the other class
Hello I have the below class like.dart that need to send some data to home.dart ``` class imageModal extends StatefulWidget { //imageModal({Key key}) : super(key: key); final title; final comments; final links; final urlImages; final userid; final postid; final userlikes; int
May 14, 2020 at 07:09PM by Evripides Kyriacou
https://ift.tt/3dFQ8FK
Flutter send variable to the other class
Hello I have the below class like.dart that need to send some data to home.dart ``` class imageModal extends StatefulWidget { //imageModal({Key key}) : super(key: key); final title; final comments; final links; final urlImages; final userid; final postid; final userlikes; int
May 14, 2020 at 07:09PM by Evripides Kyriacou
https://ift.tt/3dFQ8FK
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:
Counter UI
https://youtu.be/TmFvLRJdPs4
May 14, 2020 at 06:49PM by TheTechDesigner
https://ift.tt/2T61VFx
Counter UI
https://youtu.be/TmFvLRJdPs4
May 14, 2020 at 06:49PM by TheTechDesigner
https://ift.tt/2T61VFx
YouTube
Flutter UI | 04 | Counter UI | Text, FloatingActionButton, Timer, CustomPaint, Image | Speed Code
#TheTechDesigner
#Flutter #FlutterUI #SpeedCode #FlutterTutorial #FlutterAnimation #FlutterWidgets
#setState #automaticallyImplyLeading #Center #Container #height #width #padding #BoxDecoration #decoration #Border #Color #BorderRadius #circular #Text #TextAlign…
#Flutter #FlutterUI #SpeedCode #FlutterTutorial #FlutterAnimation #FlutterWidgets
#setState #automaticallyImplyLeading #Center #Container #height #width #padding #BoxDecoration #decoration #Border #Color #BorderRadius #circular #Text #TextAlign…
New post on /r/flutterdev subreddit:
Just released my first flutter package 🤗 it's a simple speed dial. I'm always open for feedback. 💯
https://ift.tt/3dOZSxt
May 14, 2020 at 10:55AM by iwouldntknowthough
https://ift.tt/3dKdvhv
Just released my first flutter package 🤗 it's a simple speed dial. I'm always open for feedback. 💯
https://ift.tt/3dOZSxt
May 14, 2020 at 10:55AM by iwouldntknowthough
https://ift.tt/3dKdvhv
Dart packages
simple_speed_dial | Flutter Package
A simple speed dial for Flutter. You can use as many speed dial options as you want. You can use labels next to the speed dial options. Colors of every fab can be set.