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.
New post on Flutter Dev Google group:
Flutter 1.18.0-11.1.pre released to the beta channel!
Hi all, I’m happy to announce that Flutter 1.18 / Dart 2.9 Beta builds are now available on the beta channel: 1.18.0-11.1.pre
Flutter 1.18.0-11.1.pre released to the beta channel!
Hi all, I’m happy to announce that Flutter 1.18 / Dart 2.9 Beta builds are now available on the beta channel: 1.18.0-11.1.pre
New post on /r/flutterdev subreddit:
device_frame | Mockups for common devices.
https://ift.tt/2T6k85S
May 14, 2020 at 09:06PM by Elixane
https://ift.tt/3bseYri
device_frame | Mockups for common devices.
https://ift.tt/2T6k85S
May 14, 2020 at 09:06PM by Elixane
https://ift.tt/3bseYri
Dart packages
device_frame | Flutter Package
Mockups for common devices.
New post on /r/flutterdev subreddit:
Accessing Java library via JNI from C++ library called over FFI
Hello,we are currently thinking about including a c++ library into our flutter application (over ffi). On Android this c++ library depends on an a java library which it talks to via jni.What do we need to do to get this working on flutter? Does someone has expirience with this setup?Thank you :)
May 14, 2020 at 08:26PM by Langohr2394
https://ift.tt/3czrJBA
Accessing Java library via JNI from C++ library called over FFI
Hello,we are currently thinking about including a c++ library into our flutter application (over ffi). On Android this c++ library depends on an a java library which it talks to via jni.What do we need to do to get this working on flutter? Does someone has expirience with this setup?Thank you :)
May 14, 2020 at 08:26PM by Langohr2394
https://ift.tt/3czrJBA
reddit
Accessing Java library via JNI from C++ library called over FFI
A subreddit for Google's portable UI framework.
New post on Flutter Dev Google group:
how to fix too many variables in flutter
I'm quite new to Programming and I'm trying to create stacks of cards in my Flutter project. Each card contains different data/information and when I try visualize with a dummy data, I have to use a lot of variables which is pretty much repeating variable name for each card. Is there aways to
May 14, 2020 at 09:19PM by aasenomad
https://ift.tt/2Lt5q4P
how to fix too many variables in flutter
I'm quite new to Programming and I'm trying to create stacks of cards in my Flutter project. Each card contains different data/information and when I try visualize with a dummy data, I have to use a lot of variables which is pretty much repeating variable name for each card. Is there aways to
May 14, 2020 at 09:19PM by aasenomad
https://ift.tt/2Lt5q4P
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:
Error: Unable to locate gradlew script
Please help me, i've been trying for more than 3 days to fix this error and start with flutter. I get the following error during the test of sample flutter app. Unable to locate gradlew script. Please check that C:\Users\...\app1\android\gradlew.bat exists or that C:\Users\...\app1\android can be
May 14, 2020 at 09:47PM by Sunveg Nalwar
https://ift.tt/3dIgaIH
Error: Unable to locate gradlew script
Please help me, i've been trying for more than 3 days to fix this error and start with flutter. I get the following error during the test of sample flutter app. Unable to locate gradlew script. Please check that C:\Users\...\app1\android\gradlew.bat exists or that C:\Users\...\app1\android can be
May 14, 2020 at 09:47PM by Sunveg Nalwar
https://ift.tt/3dIgaIH
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:
We’re back for round two ✌🏻 Join us for #Hack20 coming to a livestream near you soon.
Have an idea for an event theme? Please share them with us, we’d love your feedback: https://t.co/Pp41ilYA13#Flutter #FlutterCommunity @FlutterDev— Flutter Community (@FlutterComm) May 14, 2020
May 14, 2020 at 09:58PM
http://twitter.com/FlutterDev/status/1261022986338852866
We’re back for round two ✌🏻 Join us for #Hack20 coming to a livestream near you soon.
Have an idea for an event theme? Please share them with us, we’d love your feedback: https://t.co/Pp41ilYA13#Flutter #FlutterCommunity @FlutterDev— Flutter Community (@FlutterComm) May 14, 2020
May 14, 2020 at 09:58PM
http://twitter.com/FlutterDev/status/1261022986338852866
Twitter
#hack20 hashtag on Twitter
On May 21 @FlutterDev tweeted: "💙#FlutterDay, June 25th
💙24 hour digit.." - read what others are saying and join the conversation.
💙24 hour digit.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
Flutter Generative Art: The Easy Way
https://ift.tt/3brePo4
May 14, 2020 at 09:34PM by deven9852
https://ift.tt/3fNbyml
Flutter Generative Art: The Easy Way
https://ift.tt/3brePo4
May 14, 2020 at 09:34PM by deven9852
https://ift.tt/3fNbyml
Medium
Flutter Generative Art: The Easy Way
Using the intricacy of basic math to create other-worldly structures
New post on /r/flutterdev subreddit:
What solution do you think is better for the backend?
Hello everyone, I'm new to mobile programming and only recently have I approached flutter and dart.I searched a bit on the internet but I found very little information on the backend part. Solutions like firebase, which from what I've seen are used a lot for flutter, are very limited for free.so for example, I thought of using sqlite + google drive. a local database which for example on command or automatically is saved on the drive and can also be imported into the app. however this could create problems with sqlite especially with a lot of data.what would you use for the backend without spending?
May 14, 2020 at 09:33PM by Webpe
https://ift.tt/2WS9tgi
What solution do you think is better for the backend?
Hello everyone, I'm new to mobile programming and only recently have I approached flutter and dart.I searched a bit on the internet but I found very little information on the backend part. Solutions like firebase, which from what I've seen are used a lot for flutter, are very limited for free.so for example, I thought of using sqlite + google drive. a local database which for example on command or automatically is saved on the drive and can also be imported into the app. however this could create problems with sqlite especially with a lot of data.what would you use for the backend without spending?
May 14, 2020 at 09:33PM by Webpe
https://ift.tt/2WS9tgi
reddit
What solution do you think is better for the backend?
A subreddit for Google's portable UI framework.