Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

Overview of Syncfusion Flutter UI Widgets and File Format Packages
https://youtu.be/znjgp33yaiY

April 07, 2021 at 01:03PM by ArunITTech
https://ift.tt/3cXzdkF
New post on /r/flutterdev subreddit:

Getting document from Firestore only 1 time
Hello! I'm trying to get the 'username' of the current user from the users database on Firestore. I only need to get it once because it will not change depending on the activity, meaning that once I get the 'username' from the users database, it will always stay the same. I just need to save the username one time to then use it throughout the app. I'm currently using the code below, but it returns a Future String, which gives me problems to then use it on String variables (so it is not letting me use it). How can I solve this?Future<String> getCurrentUserData() async{final String userId = user.uid;final userData = await FirebaseFirestore.instance.collection('users').doc(userId).get();return currentUsername = userData.data()['username'];}

April 07, 2021 at 02:58PM by Alvaro-99
https://ift.tt/3cUc0Qq
New post on Flutter Dev Google group:

"pumping" a ffi plugin eventloop
Greetings, I am trying to port a C library to a ffi plugin. One issue I have is that the library I am trying to wrap requires an event loop for processing. I tried using a thread to run the eventloop.run(), but since the ffi is returning "Pointer
New post on /r/flutterdev subreddit:

Beamer is now null-safe by default and closing in on v1.0.0 milestone
A lot of work has been done in the past few weeks. The main goal was to improve the experience in both directions of complexity; simple and advanced usage.Thus, now we have things like SimpleLocationBuilder that can get you going with as little configuration as just a routes map (see Quick Start). On the other hand, we also have a concept of BeamState that can be extended and customized for each BeamLocation (more on that here in README).Currently we entered a process of polishing the API via polls on Discord to see what people want/like. I plan a stable v1.0.0 to be ready by the end of this month, after these discussions and tweaks.All contributions are very welcome!pub: https://pub.dev/packages/beamerGitHub: https://github.com/slovnicki/beamerDiscord: https://discord.gg/8hDJ7tP5Mz

April 07, 2021 at 03:50PM by llsII
https://ift.tt/39QF7lE
New post on /r/flutterdev subreddit:

Friendly reminder and warning about licenses for pub.dev packages
Let me preface by saying I don't want to defame this particular company, I just want to make sure everyone knows the requirements for a pub.dev package's license.There have been a few packages shared by a company known as Syncfusion on the sub lately. They look awesome but they have a severe issue, their license is not compliant with Dart's requirements for what should be on pub.dev.For those that don't know or those that do use Syncfusion's packages in your app. You should know that their license requires you to pay after your app/company grosses $1 million. You might think that won't ever happen, but it might and there in lies the issue.Dart license requirements for published packages ,can be found here under the first bullet point. They state that:You must include a LICENSE file that contains an open-source license.That link leads you opensource.org which has a list of OSD compliant licenses that you can pick from. Needless to say, the Syncfusion license is not there. Having a paywall on your widgets, even if most people won't reach that paywall, defeats the purpose of open source and free software, which is what Dart and Flutter are all about.I've opened a GitHub issue on Syncfusion's Flutter package repo here, asking them to change their license. It essentially mentions the same things I mentioned here.TLDR;Make sure your licenses for pub.dev packages are OSD compliant. And read the licenses of the packages you use to make sure you won't have any legal trouble in the future.Edit: Small formatting changes

April 07, 2021 at 03:19PM by Cholojuanito
https://ift.tt/2RfagJ7
New post on /r/flutterdev subreddit:

My Flutter app, Bestla, is now out of Beta and fully launched with Siri and Google Assistant support for Teslas
Thanks to Flutter, my work on Bestla, a companion app for Teslas, was able to include a huge amount of features on both platforms.iOS App StoreGoogle Play StoreIt's pretty impressive how quick it is to build a good-looking UI, plus business logic, all in both places. The only hang-up I really had is lack of libraries to truly run dart code in the background, though I'm sure in time this will improve.

April 07, 2021 at 05:55PM by AggieDev
https://ift.tt/2PHyRpu
New post on /r/flutterdev subreddit:

I made a library for parsing phone numbers inspired by lib phone number.
I was annoyed by the state of phone number inputs in flutter, mainly because most of them were not really working on all platforms, by using channels and libphonenumber + phoneNumberKit. So I made a full dart library to help a bit.https://pub.dev/packages/phone_numbers_parserI'm sure it will help some of you.You can also give criticism, that would be appreciated.- about the API (I think it's nice though)- about the code (Although the class Extractor might need some tidying up).- about the features​

April 07, 2021 at 05:28PM by cedvdb
https://ift.tt/3dLJpfl
New post on /r/flutterdev subreddit:

What are the best licenses for a FLOSS flutter app?
Let's say I want to release my flutter application and I want to release it to be FLOSS compliant.Flutter can be compiled for pretty much every platform, does AGPL (AGPLv3) cover everything? What are the main pro and cons and there are other licenses to consider?

April 07, 2021 at 07:51PM by staccodaterra101
https://ift.tt/3wDnBek
New post on /r/flutterdev subreddit:

flutter_mockitory - package that helps mocking data layer with Flutter widgets
I've published `flutter_mockitory` package (along with pure Dart `mockitory`).I created this package to enable mocking data layer with UI, eg. for demo purposes.https://pub.dev/packages/flutter_mockitoryThere are 2 versions of the package - with null safety and without it.Let me know your thoughts.​

April 07, 2021 at 07:32PM by jarekb123
https://ift.tt/3mDzZGV
New tweet from FlutterDev:

...and we're back:) Join us May 18-20 for #GoogleIO live, online, and free for everyone. https://t.co/763eVjWpYE pic.twitter.com/Sk3tUnLme0— Sundar Pichai (@sundarpichai) April 7, 2021

April 07, 2021 at 07:45PM
http://twitter.com/FlutterDev/status/1379852723009556487
New post on /r/flutterdev subreddit:

flutter_mockitory | Package that helps mocking data layer using Flutter widgets
https://ift.tt/3cZxb3H

April 07, 2021 at 10:26PM by jarekb123
https://ift.tt/3dDsFqw
New post on /r/flutterdev subreddit:

Daily Flutter: History of Flutter
https://imgur.com/a/sDlPoDO

April 07, 2021 at 10:20PM by ConfidentRoberto
https://ift.tt/3wzcnHP
New post on /r/flutterdev subreddit:

Is flutter a good option for big projects?
Our current project is mainly focused on web and with flutter other cross platforms look like a reward. I want to know these things:Is flutter 2 stable enough to make good web apps with good benchmarkDoes flutter 2 support code push like react nativeIs flutter scalableWhat would be the best architecture to work with flutterEdit: Also I would be very happy if you guys would mention few apps built using flutter especially web

April 07, 2021 at 11:52PM by cosmosDors
https://ift.tt/2PHiQzK
New post on Flutter Dev Google group:

an infinite loop problem freezes the app
[image: devtoollllllllllllllllll.PNG]

April 08, 2021 at 01:37AM by Bened
https://ift.tt/3rYDd8I
New post on /r/flutterdev subreddit:

Create Hyperlink in Flutter Web
https://ift.tt/3fPGSn1

April 08, 2021 at 04:17AM by thehappyharis
https://ift.tt/3mrOOfo
New post on /r/flutterdev subreddit:

What is the Best to generate PDF with Flutter ?
I search to create a beautiful pdf file with picture and informations fill in a form previously can you advice me a tool or dart library please ?

April 08, 2021 at 09:04AM by JJDevelopper
https://ift.tt/2Q9USgk
New post on /r/flutterdev subreddit:

Flutter music sheet display
affects performance or not if we create a music sheet display in the canvas flutter as vexflow on web?

April 08, 2021 at 10:38AM by phamconganhnd
https://ift.tt/3mvFOpF