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

Why there is no reliable rich text editor for flutter?
In my app I need rich text editor. I can't found any reliable solution. Sure, I tried Zefyr but after updating flutter I got a lot of errors so it won't work and the repo is inactive for a long time. I also tried some others like flutter_quill or flutter_html_editor but I can't make it work with any of them.So what is your advice? Do you have some experience with rich text editor for flutter? 🤔

March 26, 2021 at 04:04PM by radim11
https://ift.tt/3spSX5D
New post on /r/flutterdev subreddit:

Firebase & Flutter: How to store and work with detailed data (Best Practises and ideas welcome!)
Hello,im wondering if somebody has made any good experiences yet. Imagine we have a movie app and we want to show leaderboards of currently most favored movies and more. I think we agree this is totally fine with a nosql database.On top of that we want to also save informations about the user if he is watching a movie, did he like the movie or put it on his watchlist, did he watch the movie until the end if he did or where did he stop if not, I think you're getting the idea of it.I'm using firebase and I'm wondering if we can store this kind of informations in a clever way in firebase (1 sec writing limitation / getting data with simple queries)Im interested in your experience and opinions.

March 26, 2021 at 03:25PM by md186
https://ift.tt/2P265Qg
New post on /r/flutterdev subreddit:

Package/Method to embed youtube videos in a production grade app
Has anyone used youtube_plyr_iframe or youtube_player_iframe or any other packages (I can see a whole bunch of them here) to embed youtube videos in your production app.How was your experience and what package or method would you recommend?It would be great if you can add a link to your app too. Thank you!

March 26, 2021 at 04:42PM by ankmahato
https://ift.tt/3rrLodk
New post on /r/flutterdev subreddit:

Is there a way to integrate Zenly into my Flutter app like Snapchat does it?
I have seen youtube tutorials that use Google Maps widget to get the map page of Snapchat clone get done. But using Google Maps would increase monthly charges due to several api calls which are not free. Also Zenly seems to have the social aspect (seeing friends location, etc). So is there a way to get the Zenly widget integrated into my Flutter app?

March 26, 2021 at 04:34PM by slllurrrp
https://ift.tt/3tVztGl
New post on Flutter Dev Google group:

Flutter App not running
Exception in thread "main" java.net.UnknownHostException: services.gradle.org at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) at java.net.Socket.connect(Socket.java:589) at sun.security.ssl.SSLSocketImpl.co

March 26, 2021 at 05:22PM by Investor Gbriel
https://ift.tt/3cm9nGF
New tweet from FlutterDev:

💙 #TheBoringShow SDK tour 💙

This time, we're doing things a little differently.

Instead of building something, join @filiphracek as he gives you a guided tour of the Flutter SDK to see what it's all about.

Tune in for more 📺https://t.co/GvGalWDSc7 pic.twitter.com/VUSdBnZGJz— Flutter (@FlutterDev) March 26, 2021

March 26, 2021 at 06:29PM
http://twitter.com/FlutterDev/status/1375500286589083652
New post on /r/flutterdev subreddit:

Android incompatibility
Ok, so I recently started coding to make an app using flutter around 7 month ago, but for the past 3 months, I have been having problems with something called an android x incompatibility. And I researched alot, but cant find any answers, any help will be appreciated.The specific problem: androidx incompatibilities in a plugin(cloud firestore).

March 26, 2021 at 06:29PM by ebone2155
https://ift.tt/3tX5jCS
New post on Flutter Dev Google group:

Single progress bar for uploading multiple file to firebase storage
I want to show progress of file uploading to firebase. I am able to show progress using snapshotEvents if only one file is uploaded. How can I show progress in a single bar when multiple files are uploaded.

March 26, 2021 at 09:55PM by Rakesh Singh
https://ift.tt/3rsCTPc
New post on /r/flutterdev subreddit:

A Flag widget to display unicode flag emojis
I wanted to share a simple Flag widget that displays a flag composed from so called unicode regional indicator symbols, however DartPad cannot display them*. Bummer. Still, here's my code in case somebody finds it useful.* I filed a bug.

March 26, 2021 at 09:48PM by eibaan
https://ift.tt/3w3qXas
New post on Flutter Dev Google group:

Having a problem when using Hive database.
When i call the function that i have made to put data's to the database hive. The error occuring that method was called don null.

March 27, 2021 at 05:02AM by Abin vs
https://ift.tt/3stAYeO
New post on Flutter Dev Google group:

Blocked JavaScript / Flutter
Hi Everyone, Could anyone assist and advise if they're able to pull through this page into a mobile application? I've tried everything and I understand the specific platform 'Mixcloud is a closed off-platform, but we are aware another client who uses this platform has done this through javascrip

March 27, 2021 at 08:17AM by Bridget Kelly O'Sheehan
https://ift.tt/3lX8LL1
New post on /r/flutterdev subreddit:

Best practice with Dart null-safety
Hi all Flutter and Dart developers. I working with json to dart generator and planning to add null-safety support. And I want to ask what is best practice create a class with null-safety. It's OK to use question mark ? everywhere maybe late is better in the some situations. How is best your practice in the reality. I'm self not started yet to use null-safety still with old.

March 27, 2021 at 11:57AM by a-rns
https://ift.tt/2QN9Ppj
New post on /r/flutterdev subreddit:

How to sandbox 3rd party apps that attempt to integrate components in a Flutter app
I've been working on a platform where I provide a bunch of productivity tools to the end user. One key aspect for the success of this platform is to open up a marketplace coming 3rd party providers. The application I develop works in multitenant mode (SASS). I have my own REST API that I plan to expose publicly trough an API gateway. Some triggers will be provided as well. Up to here all is fine, nothing tricky.Now the problem arrives if I want to allow other vendors to run components hosted inside the GUI. My closest experience to such a requirement is developing plugins for Jira Cloud. They offer: Rest API, Triggers and a homebrew attlasianconfing.json where you can define the views you want attached to which slots. Apparently they use iframes to sandbox the 3rd party providers and avoid anybody tampering with the rest of the page / data. Of course they also have some complicated business with access tokens as well and request throttling.I'm attempting to build something similar myself but I fail to find any tutorials on the web outlining a path forward. Afaik, Flutter has the webview, which behaves much like an iframe. I could be using that, but then you have performance implications. And here my knowledge runs short. Any advice or idea is very much welcomed!TLDR Is it possible at all to run Flutter components from 3rd party vendors in a sandboxed environment inside my own app?

March 27, 2021 at 12:49PM by SpaceInstructor
https://ift.tt/3m3Pesb