Flutter Heroes
26.6K subscribers
272 photos
1 video
31.1K links
Download Telegram
New post on Flutter Dev Google group:

Splash Screen problems
Hello, I would like someone to help me with the splash screen, because I have many problems. What happens is that I create a design with a gradient that I want to put as my splash screen, I have created it with the dimensions that should be used for android, according to what it says in this

June 02, 2021 at 10:28PM by Cristian Arias
https://ift.tt/3g8n6l2
New post on /r/flutterdev subreddit:

VS Code Problems since upgrading to Flutter 2.2
I've lately been having problems with VS Code since upgrading to Flutter 2.2. VS Code works fine until I run on an iOS simulator after a couple of hot reloads VS Code's IntelliSense seems to completely die. I can't search for references, I can't command click on anything, auto-complete stops, error detection stops.Has anyone experienced anything similar? Perhaps more importantly does anyone know how to access relevant logs to the flutter plugin that I could track down what is going on? I've tried restarting the dart analysis server but that doesn't seem to do anything.

June 02, 2021 at 10:37PM by blueclawsoftware
https://ift.tt/3vPnc7R
New post on /r/flutterdev subreddit:

Are there any good Flutter libraries/packages that bootstrap some essential app features?
Hello,I am very lazy, and I am wondering if there are any Flutter libraries/packages that allow me to bootstrap some essential elements of a mobile app, stuff like registration/authentication/account-recovery, location settings, etc.I'm new to Flutter so pardon my ignorance of the ecosystem.Thanks in advance!

June 02, 2021 at 10:21PM by imjewishOOF
https://ift.tt/3vOfxXn
New post on /r/flutterdev subreddit:

The key hash does not match any of the stored key hashes
Hello, I am trying to login with facebook.I followed the steps of the facebook developers documentation, also, I am using the flutter_facebook_login package, in one of the steps they ask me to make a hash, I do the hash, I do not get any error and the configuration is completed. When I run the app and select my account, the ERROR appears.I use this command.keytool -exportcert -alias androiddebugkey -keystore "C:\Users\PC\.android\debug.keystore" | "C:\Users\PC\Desktop\openssl-0.9.8k_X64\bin\openssl" sha1 -binary | "C:\Users\PC\Desktop\openssl-0.9.8k_X64\bin\openssl" base64

June 03, 2021 at 12:04AM by SirRiKard003
https://ift.tt/2Txn6mZ
New post on /r/flutterdev subreddit:

GDG Montreal / Google I/O Extended (Online) - Saturday, June 12th - 12:30PM / 5:30PM.
Join us for this online event where we will explore in more detail some of the announcements that were made by Google during I/O 2021, plus multiple tracks on Android and Flutter sessions for you to pick from. Register FREE now! https://gdg.community.dev/events/details/google-gdg-montreal-presents-google-io-extended-2021/

June 03, 2021 at 02:56AM by romanjustcodes
https://ift.tt/3fL8uZT
New post on Flutter Dev Google group:

save a temp file from path-provider to download file Android/IOS in flutter
Hi everyone, I have a question, I am using Path-provider to generate a path for a new generated PDF file from my App… but path provider is storing the file in the App folder & after closing the app the file will be deleted, I am using ```getExternalStorageDirectory```… how can I save that file

June 03, 2021 at 04:13AM by Samer Jallad
https://ift.tt/3fQf29X
New post on /r/flutterdev subreddit:

kaze - a productivity android launcher
I am still new to publishing apps and testing in production but would appreciate some constructive criticism regarding kaze! Thank youhere is the app link

June 03, 2021 at 06:18AM by automatedhuman3120
https://ift.tt/3fJsxb3
New post on /r/flutterdev subreddit:

System-wide Flutter library
Can the runtime library be bundled with OS/Browser or is something like ABI limiting it?At 13mb it already is bigger than many native apps.

June 03, 2021 at 10:15AM by tdiabel
https://ift.tt/2TsH2r9
New post on Flutter Dev Google group:

WebView Kit / Flutter Web View
Hi Everyone, Can anyone advise about this, if there is a work around? I've tried upgrading this package to 2.0.8 but still no luck and it's supposed to support IOS? It's a simple Web View that should be working, works fine on Android but IOS, seems to have issues after issues with this.

June 03, 2021 at 01:28PM by Bridget Kelly O'Sheehan
https://ift.tt/3uPS3zM
New post on /r/flutterdev subreddit:

DART/Flutter is good for the building career?
Is it good to switch to DART/Flutter for building a career in 2021?

June 03, 2021 at 02:02PM by sp_jamesdaniel
https://ift.tt/3piWIta
New post on Flutter Dev Google group:

RAPISCE, INCULA, AMMAZZA I BAMBINI: DANIELE MINOTTI! AVVOCATO PEDOFILO, SATANISTA, SATAN卐AZISTA, MASSON^PIDUISTA, ASSASSINO DI GENOVA, RAPALLO E CRIMINALISSIMO STUDIO LEGALE LISI!
É DA ARRESTARE L'AVVOCATO CHE RAPISCE, INCULA ED AMMAZZA TANTI BAMBINI: DANIELE MINOTTI DI TWITTER, GENOVA E CRIMINALISSIMO STUDIO LEGALE LISI (FOTO https://ift.tt/3ieYQ3y )! NONCHE' DI MASSONERIE SATANISTE E SERVIZI SEGRETI ITALIANI DI TIPO

June 03, 2021 at 02:54PM by LORENZO PIACENTINI LAZARD MILAN
https://ift.tt/2SUeXbU
New post on /r/flutterdev subreddit:

Dart Functions Framework with Google Cloud Platform to manage Firebase backend?
I used to use the firebase cloud functions interop package to write functions in dart, which would then be compiled to javascript and served as cloud functions. Great for manipulating firebase on event triggers.The package hasn't been updated in a while so I'm looking at other alternatives to do cloud functions for firebase.Is there a good resource out there for using the functions framework package, maybe hosting them on google cloud platform, but using it to manage firebase through the Admin SDK? Extra points if I could make this work with firebase cloud function triggers like when a user is created or when a database entry is updated, etc.Alternatively if anyone has alternate ideas for what I'm trying to accomplish please share them. (Before anyone suggests just doing cloud functions in another language, I might end up doing so but I would really prefer looking at what full stack dart options I have.)Thanks!

June 03, 2021 at 02:44PM by Shazamo333
https://ift.tt/3fOgl8Y
New post on /r/flutterdev subreddit:

State Management with Bloc - What is the best way to handle and copy states?
I mostly use Bloc for state management (and sometimes provider for smaller parts of the UI - or at least cubit). The only thing I really hate about Bloc is the states. I always create a StateBase class and extend it with stuff like:```dartclass BaseState {}class Loading extends BaseState {}class Loaded extends BaseState {String myData;// some constructor}```And in the build method we have to make type checks like this:```dartif (state is LoadingState) {} else if (state is Loaded) {} else {// have to do this for the type checker but we never reach this}```This is so much boilerplate I think and we still have to handle think about using Equatable and copyWith methods for all State and Data classes so that we actually trigger a rebuild when emitting/yielding a new state.I liked the way Freezed is handling all the copyWith and hashCode stuff for me but in general I hate Freezed since the code generation introduces new code I don't know about and the syntax of Freezed is absolutely counterintuitive with all the abstract classes. This is sad since you can't read the code easily anymore which is too big of a tradeoff because good code is code which you can easily read and understand.So how do you guys use Bloc in combination with your data classes and how do you guys code states? Did you guys have the same experience with Freezed?

June 03, 2021 at 05:04PM by Hard_Veur
https://ift.tt/2Rh6GhQ
New post on /r/flutterdev subreddit:

How do you guys go about error handling in your architecture? Which is the best way you found?
This is a problem that I think we all came across but I still think I didn't found the perfect solution. I generally go with a 3 layer architecture which is pretty common I think (e.g. MVVM, MVP/MVC....). I separat my project in presentation/application, domain and infrastructure (presentation is UI stuff, application is state management, domain is for the data classes and infrastructure is for the repos).The problem now is how to pass an Error from the repository up to the presentation in the best way? I started by the most trivial approach: if I get null as return type something went wrong. This is obviously bad since we don't know what and where something went wrong (I assume I catch all errors and handle them in the repo since everything else means risking a red screen of death in flutter). I also saw the complete over engineered method from ResoCoder DDD course which used Either and Options all over the place to handle errors.What I'm interested in is how do you handle errors probably? (and how do you pass them to the user - like showing a server error message or no connection error?) I mean it isn't relevant which architecture you use since no matter if MVC or whatever we all need error handling.

June 03, 2021 at 04:52PM by Hard_Veur
https://ift.tt/2TIyyfX
New post on /r/flutterdev subreddit:

Introducing NativeShell for Flutter
https://ift.tt/3yX8FJf

June 03, 2021 at 04:18PM by jpnurmi
https://ift.tt/2TDlCI6
New post on /r/flutterdev subreddit:

super_editor | Flutter Package | Configurable, composeable, extensible text editor and document renderer for Flutter.
https://ift.tt/3yX9aTH

June 03, 2021 at 06:35PM by EngineerScientist
https://ift.tt/34KsRjS
New post on Flutter Dev Google group:

Flutter web automation options for deployed web apps
We want to implement end-to-end tests for workflows in which a Flutter web app is only one of several web applications to be automated in a test environment. In short, I'd like to be able to point flutter drive to a web application URL instead of a main dart file. Even better would be an

June 03, 2021 at 09:56PM by Heinrich Janzing
https://ift.tt/3z0138T
New post on /r/flutterdev subreddit:

Alerting mistakes you are making when you Hire Flutter Developer for your App.
https://ift.tt/3vQ0koQ

June 03, 2021 at 09:25PM by alexisgilburt
https://ift.tt/34YnNsh