New post on /r/flutterdev subreddit:
ReorderableListView - onReorder implementation
I coudn't find anywhere a proper implementation of onReorder. The only ones I could find were just swapping the elements instead of reordering them. This is my current implementation. I just wrote it, so I haven't got time to test it that thoroughly, but it seems like it's working.Maybe it helps someone.
June 12, 2020 at 09:29AM by castorasmic
https://ift.tt/3fhxoNG
ReorderableListView - onReorder implementation
I coudn't find anywhere a proper implementation of onReorder. The only ones I could find were just swapping the elements instead of reordering them. This is my current implementation. I just wrote it, so I haven't got time to test it that thoroughly, but it seems like it's working.Maybe it helps someone.
if (oldIndex > newIndex) { for (var i = newIndex; i < oldIndex; i++) { swap(oldIndex, i); } } else { newIndex -= 1; for (var i = 0; i < newIndex - oldIndex; i++) { swap(oldIndex, newIndex - i); } }
June 12, 2020 at 09:29AM by castorasmic
https://ift.tt/3fhxoNG
reddit
ReorderableListView - onReorder implementation
I coudn't find anywhere a proper implementation of onReorder. The only ones I could find were just swapping the elements instead of reordering...
New post on /r/flutterdev subreddit:
Flutter + Appwrite (Firebase open-source alternative) episode 01 is out (14m) 📹
https://www.youtube.com/watch?v=teUUt4ZqIvI
June 12, 2020 at 09:14AM by eldadfux
https://ift.tt/2UysOCH
Flutter + Appwrite (Firebase open-source alternative) episode 01 is out (14m) 📹
https://www.youtube.com/watch?v=teUUt4ZqIvI
June 12, 2020 at 09:14AM by eldadfux
https://ift.tt/2UysOCH
YouTube
@Flutter + Appwrite : EP 1 - Setup Appwrite
Episode 1 of my @Flutter + Appwrite tutorial series, where we will setup Appwrite, create first collection and setup rules to store data for our application that we will build in this series. The only prerequisite to continue is to install @Docker and Docker…
New post on /r/flutterdev subreddit:
Friends Tournament - Tournament creation and management made easy
Finally, I've been able to deploy my first Flutter project: Friends Tournament!I've developed it using the BloC pattern and it's open-source if you want to give a look, contribute or give any kind of feedback.https://github.com/prof18/Friends-TournamentFriends Tournament is a simple application that will help you to manage and organize tournaments with your friends.. All you need to do is to provide the number of players, the number of matches, and the number of players that can play at the same time. That’s all! Friends Tournament will then generate the matches and the rounds for you. You can then keep the score of each player and a leaderboard will be generated automatically.Play Store: https://play.google.com/store/apps/details?id=com.prof.friends_tournament
June 12, 2020 at 09:57AM by badprof18
https://ift.tt/3hmEEKc
Friends Tournament - Tournament creation and management made easy
Finally, I've been able to deploy my first Flutter project: Friends Tournament!I've developed it using the BloC pattern and it's open-source if you want to give a look, contribute or give any kind of feedback.https://github.com/prof18/Friends-TournamentFriends Tournament is a simple application that will help you to manage and organize tournaments with your friends.. All you need to do is to provide the number of players, the number of matches, and the number of players that can play at the same time. That’s all! Friends Tournament will then generate the matches and the rounds for you. You can then keep the score of each player and a leaderboard will be generated automatically.Play Store: https://play.google.com/store/apps/details?id=com.prof.friends_tournament
June 12, 2020 at 09:57AM by badprof18
https://ift.tt/3hmEEKc
GitHub
GitHub - prof18/Friends-Tournament: Tournament creation and management made easy
Tournament creation and management made easy. Contribute to prof18/Friends-Tournament development by creating an account on GitHub.
New post on Flutter Dev Google group:
i want to get value from ESP32 to my app
Hi IM new to flutter. Can you help me get data from esp32 without using service UUID and characteristics UUID?. Can you help me out Thank you so much in advance
June 12, 2020 at 11:31AM by Abinavan Nagendran
https://ift.tt/2YlyVve
i want to get value from ESP32 to my app
Hi IM new to flutter. Can you help me get data from esp32 without using service UUID and characteristics UUID?. Can you help me out Thank you so much in advance
June 12, 2020 at 11:31AM by Abinavan Nagendran
https://ift.tt/2YlyVve
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 in building flutter app
Build is failing with following error. Can somebody help me in resolving this issue. Could not resolve all artifacts for configuration ':admob_flutter:classpath'. > Could not resolve org.checkerframework:checker-qual:2.5.2. Required by: project :admob_flutter > com.android.tools.b
June 12, 2020 at 11:56AM by Pradeep Kumar Reddy Kondreddy
https://ift.tt/2XTJs1I
Error in building flutter app
Build is failing with following error. Can somebody help me in resolving this issue. Could not resolve all artifacts for configuration ':admob_flutter:classpath'. > Could not resolve org.checkerframework:checker-qual:2.5.2. Required by: project :admob_flutter > com.android.tools.b
June 12, 2020 at 11:56AM by Pradeep Kumar Reddy Kondreddy
https://ift.tt/2XTJs1I
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 dependencies on Android or IOS versions
Is it depends on Android or IOS version?For example, I built an Android app with Android SDK 10 (Q) API level 29. Then I want to use that app in an Android 6 (marshmallow) phone. Is that possible? Should I use SDK 6.0 for that?So far I haven't seen any widget or package that specify Only supported in Android XXXX and IOS XXXX.I know Flutter run on its own and doesn't compile to native code which makes me think it's possible for backward compatibility.
June 12, 2020 at 12:09PM by seederbeast
https://ift.tt/2Yv47Z8
Flutter dependencies on Android or IOS versions
Is it depends on Android or IOS version?For example, I built an Android app with Android SDK 10 (Q) API level 29. Then I want to use that app in an Android 6 (marshmallow) phone. Is that possible? Should I use SDK 6.0 for that?So far I haven't seen any widget or package that specify Only supported in Android XXXX and IOS XXXX.I know Flutter run on its own and doesn't compile to native code which makes me think it's possible for backward compatibility.
June 12, 2020 at 12:09PM by seederbeast
https://ift.tt/2Yv47Z8
reddit
Flutter dependencies on Android or IOS versions
Is it depends on Android or IOS version? For example, I built an Android app with Android SDK 10 (Q) API level 29. Then I want to use that app in...
New post on /r/flutterdev subreddit:
How often do you upgrade your packages?
How often do you run either
June 12, 2020 at 12:52PM by 946789987649
https://ift.tt/3hoIfXZ
How often do you upgrade your packages?
How often do you run either
flutter pub upgrade
or flutter pub outdated
?I'm trying to work out a nice happy medium between going too long without upgrading, but also without spending all my time upgrading things if I don't have a consistent amount of time to work on my app.June 12, 2020 at 12:52PM by 946789987649
https://ift.tt/3hoIfXZ
reddit
How often do you upgrade your packages?
How often do you run either `flutter pub upgrade` or `flutter pub outdated`? I'm trying to work out a nice happy medium between going too long...
New post on /r/flutterdev subreddit:
How to update information like user basic derails from Flutter App to particular plattform?
Hi, I have a dubte, it will enought to have an API from an particular private platform (Like firebase back-end) to be able from flutter App to store on this platform an data of user??
June 12, 2020 at 12:43PM by maliDevFlutter
https://ift.tt/3fgZ0m5
How to update information like user basic derails from Flutter App to particular plattform?
Hi, I have a dubte, it will enought to have an API from an particular private platform (Like firebase back-end) to be able from flutter App to store on this platform an data of user??
June 12, 2020 at 12:43PM by maliDevFlutter
https://ift.tt/3fgZ0m5
reddit
How to update information like user basic derails from Flutter App...
Hi, I have a dubte, it will enought to have an API from an particular private platform (Like firebase back-end) to be able from flutter App to...
New post on /r/flutterdev subreddit:
Released my first plugin and looking for iOS help!
https://ift.tt/2AsXL4B
June 12, 2020 at 02:10PM by saverio_m
https://ift.tt/2Yvo41Y
Released my first plugin and looking for iOS help!
https://ift.tt/2AsXL4B
June 12, 2020 at 02:10PM by saverio_m
https://ift.tt/2Yvo41Y
Dart packages
flutter_radar_io | Flutter Package
This plugin allows to use the Radar.io SDK in your Flutter mobile app on iOS and Android.
New post on /r/flutterdev subreddit:
Dart Null Safety - Widget Studio - Flutter Bottom Modal Sheet - FlutterPen - Flutter News
https://youtu.be/xhGrbzp-DfY
June 12, 2020 at 03:02PM by MyracleDesign
https://ift.tt/2MXncxD
Dart Null Safety - Widget Studio - Flutter Bottom Modal Sheet - FlutterPen - Flutter News
https://youtu.be/xhGrbzp-DfY
June 12, 2020 at 03:02PM by MyracleDesign
https://ift.tt/2MXncxD
New post on /r/flutterdev subreddit:
How to make your widget draggable, not drag and drop?
https://youtu.be/oGB9tkS0Gmk
June 12, 2020 at 02:38PM by rob822
https://ift.tt/2B4J9YV
How to make your widget draggable, not drag and drop?
https://youtu.be/oGB9tkS0Gmk
June 12, 2020 at 02:38PM by rob822
https://ift.tt/2B4J9YV
YouTube
How to make your widget draggable in flutter?
How to make your widget draggable, not drag and drop?
Flutter is Google’s portable UI framework for building modern, native, and reactive applications
for iOS and Android. Google is also working on Flutter desktop embedding and Flutter for the Web
(Hummingbird)…
Flutter is Google’s portable UI framework for building modern, native, and reactive applications
for iOS and Android. Google is also working on Flutter desktop embedding and Flutter for the Web
(Hummingbird)…
New post on Flutter Dev Google group:
Formatting a phone number taken from phone address book
Phone numbers in address book sometime is weird. Here is a simple snippet to convert them to a real phone number which is acceptable by provider to send SMS, e.t.c. https://ift.tt/37phSN3
June 12, 2020 at 05:02PM by Igor Karelin
https://ift.tt/3fjm9o1
Formatting a phone number taken from phone address book
Phone numbers in address book sometime is weird. Here is a simple snippet to convert them to a real phone number which is acceptable by provider to send SMS, e.t.c. https://ift.tt/37phSN3
June 12, 2020 at 05:02PM by Igor Karelin
https://ift.tt/3fjm9o1
Flutter Forum | Blog
Formatting phone numbers from phone address book
Sometimes you need to fo format your phone number. Here is a snippet for this: String getFormattedPhone(String _phoneNumber) {String _formattedStrin...
New post on /r/flutterdev subreddit:
Flutter Privacy Policy Made Easy | Markdown and Dialog
https://youtu.be/-0rJrfSRWs4
June 12, 2020 at 04:58PM by RobertBrunhage
https://ift.tt/3dWPC6N
Flutter Privacy Policy Made Easy | Markdown and Dialog
https://youtu.be/-0rJrfSRWs4
June 12, 2020 at 04:58PM by RobertBrunhage
https://ift.tt/3dWPC6N
YouTube
Flutter Privacy Policy Made Easy | Markdown and Dialog
Course to build a production-ready app 👉 https://robertbrunhage.com/course
Sign up now to get notified when it's released: https://listwell.app/
⭐⭐⭐ SUPPORT ME ⭐⭐⭐
Patreon: https://www.patreon.com/join/RobertBrunhage
PayPal: …
Sign up now to get notified when it's released: https://listwell.app/
⭐⭐⭐ SUPPORT ME ⭐⭐⭐
Patreon: https://www.patreon.com/join/RobertBrunhage
PayPal: …
New post on /r/flutterdev subreddit:
Furniture App - Flutter UI
https://youtu.be/bkR7naR1efA
June 12, 2020 at 04:54PM by anwarabir
https://ift.tt/3cWxPeS
Furniture App - Flutter UI
https://youtu.be/bkR7naR1efA
June 12, 2020 at 04:54PM by anwarabir
https://ift.tt/3cWxPeS
YouTube
Furniture App - Flutter UI - Speed Code
Nice, clean Furniture app #UI using #Flutter.
We design two pages one is the product page with a search bar at the top then the category list at the end list of products. And another one is the details page provides you more details about the product like…
We design two pages one is the product page with a search bar at the top then the category list at the end list of products. And another one is the details page provides you more details about the product like…
New post on Flutter Dev Google group:
Flutter maintenance
if this framework is not maintained after few years, what is the situation ?
June 12, 2020 at 05:57PM by Murali Krishna
https://ift.tt/37ncFFH
Flutter maintenance
if this framework is not maintained after few years, what is the situation ?
June 12, 2020 at 05:57PM by Murali Krishna
https://ift.tt/37ncFFH
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:
Should I use Firebase? Concerned about my app.
I am building an app that would directly compete with a google product and the data that we are gathering could be integrated into their product. I read the terms and under section 6. Information Rights and Publicity, it says "Google and its wholly owned subsidiaries may retain and use, subject to the terms of its privacy policy (located at https://www.google.com/policies/privacy/), information collected in Your use of the Service. Google will not share Your Customer Data or any Third Party's Customer Data with any third parties unless Google (i) has Your consent for any Customer Data or any Third Party's consent for the Third Party's Customer Data; (ii) concludes that it is required by law or has a good faith belief that access, preservation or disclosure of Customer Data is reasonably necessary to protect the rights, property or safety of Google, its users or the public; or (iii) provides Customer Data in certain limited circumstances to third parties to carry out tasks on Google's behalf (e.g., billing or data storage) with strict restrictions that prevent the data from being used or shared except as directed by Google. When this is done, it is subject to agreements that oblige those parties to process Customer Data only on Google's instructions and in compliance with this Agreement and appropriate confidentiality and security measures." Obviously the app isnt going to be threatened at launch but it grew to a large valuable dataset, would this be a potential problem? Any good alternatives to firebase?
June 12, 2020 at 05:51PM by AnkleLockConnoisseur
https://ift.tt/30CraEg
Should I use Firebase? Concerned about my app.
I am building an app that would directly compete with a google product and the data that we are gathering could be integrated into their product. I read the terms and under section 6. Information Rights and Publicity, it says "Google and its wholly owned subsidiaries may retain and use, subject to the terms of its privacy policy (located at https://www.google.com/policies/privacy/), information collected in Your use of the Service. Google will not share Your Customer Data or any Third Party's Customer Data with any third parties unless Google (i) has Your consent for any Customer Data or any Third Party's consent for the Third Party's Customer Data; (ii) concludes that it is required by law or has a good faith belief that access, preservation or disclosure of Customer Data is reasonably necessary to protect the rights, property or safety of Google, its users or the public; or (iii) provides Customer Data in certain limited circumstances to third parties to carry out tasks on Google's behalf (e.g., billing or data storage) with strict restrictions that prevent the data from being used or shared except as directed by Google. When this is done, it is subject to agreements that oblige those parties to process Customer Data only on Google's instructions and in compliance with this Agreement and appropriate confidentiality and security measures." Obviously the app isnt going to be threatened at launch but it grew to a large valuable dataset, would this be a potential problem? Any good alternatives to firebase?
June 12, 2020 at 05:51PM by AnkleLockConnoisseur
https://ift.tt/30CraEg
Google
Terms of Service | Google Analytics – Google
Read Google Analytics terms of service.
New post on /r/flutterdev subreddit:
Announcing Byteconf Flutter
https://ift.tt/3foKk4F
June 12, 2020 at 06:13PM by chimon2000
https://ift.tt/2UCpaYM
Announcing Byteconf Flutter
https://ift.tt/3foKk4F
June 12, 2020 at 06:13PM by chimon2000
https://ift.tt/2UCpaYM
Medium
Announcing Byteconf Flutter: a free, fully remote Flutter conference
At the beginning of May, Bytesized went live with Byteconf React — a free, two-day remote conference focused on the React ecosystem. The…
New post on Flutter Dev Google group:
Re: Strange question: How long will this framework is maintained or planned?
We plan to maintain Flutter for the foreseeable future. On Fri, Jun 12, 2020, 8:49 AM Murali Krishna
Re: Strange question: How long will this framework is maintained or planned?
We plan to maintain Flutter for the foreseeable future. On Fri, Jun 12, 2020, 8:49 AM Murali Krishna
New post on Flutter Dev Google group:
Skipped 1250 frames
My app is skipping frames and app is getting crashed when i run the app. I am trying to implement tesseract_ocr in the app any help is appreciated.
June 12, 2020 at 06:20PM by VASHISHT DEVASANI
https://ift.tt/2BTEo4W
Skipped 1250 frames
My app is skipping frames and app is getting crashed when i run the app. I am trying to implement tesseract_ocr in the app any help is appreciated.
June 12, 2020 at 06:20PM by VASHISHT DEVASANI
https://ift.tt/2BTEo4W
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:
Momentum: Another state management library. What do you think about it?
/r/dartlang/comments/h12tim/momentum_a_super_powerful_flutter_state/
June 12, 2020 at 07:13PM by 2reform
https://ift.tt/3hklaWt
Momentum: Another state management library. What do you think about it?
/r/dartlang/comments/h12tim/momentum_a_super_powerful_flutter_state/
June 12, 2020 at 07:13PM by 2reform
https://ift.tt/3hklaWt
reddit
r/FlutterDev - Momentum: Another state management library. What do you think about it?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Momentum: a new powerful Flutter state management library, with clean architecture and features like persistence, time travel, and dependency injection
https://ift.tt/2XX22pQ
June 12, 2020 at 06:52PM by LudwikTR
https://ift.tt/37qNH8j
Momentum: a new powerful Flutter state management library, with clean architecture and features like persistence, time travel, and dependency injection
https://ift.tt/2XX22pQ
June 12, 2020 at 06:52PM by LudwikTR
https://ift.tt/37qNH8j
xamdev.gq
Momentum
A super powerful flutter state management library inspired with MVC pattern with a very flexible dependency injection.