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

What is your perfect designer match? (tool wise)
No, I'm not talking about Tinder for designers and developers. :))As a Flutter hustler, what design tools do you use to collaborate with your designers? Which one do you prefer? But what I am truly curious about, does it matter to you? Any pros and cons for a specific tool?Adobe XDFigmaSketch......continue the list with the technology your developer is working withBut what I am curious with, does it matter to you? Any pros and cons for a specific tool?

March 29, 2021 at 07:40PM by Affectionate-Chip506
https://ift.tt/3u5ATOQ
New post on /r/flutterdev subreddit:

Cross-post from /Dartlang: Announcing the Sunsetting of Aqueduct
Stable Kernel's official statement regarding the sunsetting of Aqueduct - an open-source, server-side framework written in Dart

March 29, 2021 at 07:29PM by blakleylane
https://ift.tt/3tZ8euw
New post on /r/flutterdev subreddit:

How is the experience with Flutter Desktop currently?
I am deciding to build either a native Mac app in Swift or go with Flutter. I am more experienced in Flutter and I really want to use Flutter to build the Mac app. Have any of you tried Flutter on the desktop (Mac especially) recently? If so, how was the experience? How was the app during production?I am generally keen to know this and to decide whether or not Flutter Desktop should be good and stable to work with despite it being in beta. Also, how was the experience uploading it to an app store such as the Mac App Store or the Windows Store?I thank you all who choose to answer! I look forward to hearing from some of you! :)

March 29, 2021 at 09:01PM by jazilzaim
https://ift.tt/3u5KHbC
New post on /r/flutterdev subreddit:

How people calling markNeedsBuild() "like a good luck charm" gave us the setState() API
https://ift.tt/3wkt3Ts

March 29, 2021 at 08:59PM by roughike
https://ift.tt/3wdbV1F
New post on /r/flutterdev subreddit:

Google Drive Image Viewer
Hi I think you know how Google Drive image viewer or file looks likehow can I implement something like it in flutter ?

March 29, 2021 at 09:32PM by ANDRUXUIS
https://ift.tt/3mehDvX
New post on Flutter Dev Google group:

FirebaseAuth.instance.signOut() doesn't sign out current user
Originally, I used just firebaseAuth.instance.signOut() within onPress() button, but the user doesn't sign out. Then, I changed to below code that I found on stackoverflow to try, and the result is the same. After sign out, the " print(FirebaseAuth.instance.currentUser.uid);" still can print the

March 29, 2021 at 10:16PM by Xin
https://ift.tt/3foOkVT
New post on /r/flutterdev subreddit:

Full stack demo for on GitHub for upcoming conference
Hey Flutter devs!As part of a full-stack talk for an upcoming conference, I'm going to do a very short demo with a Flutter desktop app calling a Dart serverless app (created with the Dart Functions Framework dartfn tool) running on Cloud Run.Unfortunately, I'm not allowed to discuss the dates or confirm whether it's Google I/O or Next, or whatever, until Google officially announces, so conjecture all you like, just please don't ask me! 🤐 But I'll be recording the demo this Thursday, so you have two days to pitch in if you'd like to help out and get some glory!The main thing is to keep things simple (only five minutes!) so I've created a small demo app that I've published on GitHub:https://github.com/subfuzion/io21-dart-flutter-fullstack-demoWant to have your name called out in the demo credits for helping out?
I'm on the Google Cloud team and spent a bunch of time on the Dart Functions Framework, but this is literally the first Flutter app I've ever written. I'm looking to you Flutter experts to help ensure the Flutter app conforms to best practices without becoming too complicated and overkill for a simple demo.I've implemented a very simple model/view/services type of architecture using Provider. I attempted to make it configurable for "dev" (localhost) and "prod" (Cloud Run) environments, although it doesn't quite work. 🤔If you want to pitch in, open issues or submit pull requests over the next two days. Useful critiques in issues or pull requests that I merge will get definitely earn you karma points and credit in the video. I'll make sure to highlight your name and if you want, Twitter ID and profile picture.I'm open to all ideas for enhancements or future demos, but please keep in mind that this specific demo must be kept short and sweet for time purposes.Cheers!Tony
[tonypujals@google.com](mailto:tonypujals@google.com) | Twitter: @subfuzion

March 30, 2021 at 01:58AM by subfuzion
https://ift.tt/3sDBiaP
New post on /r/flutterdev subreddit:

flutter doctor issue on ubuntu
Installed flutter on Ubuntu. `flutter doctor` says no plugin found for flutter and dart on the android-studio.I have installed both the android-studio and IntelliJ and plugins on both. Everything is working.Strange, Linux mint did not have this issue.Is there any other use of `flutter doctor` apart from verifying the installs?

March 30, 2021 at 03:03AM by ToChaseAwayTheNight
https://ift.tt/3m3DohD
New post on /r/flutterdev subreddit:

Announcing Alfred - A super easy, modular, ExpressJS like server package for dart.
Hi community!I have been developing backend servers in dart for some time now, but with the demise of Aqueduct and Angel, I wanted to create something that was accessible and not a monolith. Hence Alfred was born! It's a fully featured ExpressJS like framework for dart that does one thing, and one thing well - serving data.You can use whichever database or ORM you like, you can fire up server in only a few lines of code:main() async {
final app = Alfred();
app.get("/example", (req, res) => "Hello world");
await app.listen();
print("Listening on port 3000");
}It has very limited dependencies, its null safe, and relies heavily on dart's excellent internal libraries - so you are safe to run with it. In fact - it's only about ~150 lines of code (with 100% code coverage). Therefore it's not huge commitment if you want to sub it out later on - not that I expect you will.I'm going to be migrating my mission critical apps over the next week or so and refining it, but would love your feedback if you want to check it out. There are heaps of simple examples in the Readme such as serving files, json and routing:https://github.com/rknell/alfred

March 30, 2021 at 02:59AM by MyNameIsIgglePiggle
https://ift.tt/3sELHDa
New post on /r/flutterdev subreddit:

I’m starting a flutter app and need to decide between firebase or a backend hooking to a vps with that storage option or Amazon s3
Building a social app here that mainly uploads and steam video. Users upload videos and videos auto play as they browse the feed. I feel firebase would be easiest but I need it to be able to scale at a reasonable cost. Any advice as to the best course of action would be much appreciated!

March 30, 2021 at 04:29AM by Necessary1OK
https://ift.tt/39tftmV
New post on /r/flutterdev subreddit:

Timely advice about adding days to a DateTime: showing that .add(Duration(days: 1)) is always 24 hours, despite the day in question being 23 or 25 hours.
https://youtu.be/usFSVUEadyo

March 30, 2021 at 05:39AM by RandalSchwartz
https://ift.tt/2O7QzBO
New post on Flutter Dev Google group:

I am getting so many unresolved errors in AndroidManifest.xml. How can I solve them?


March 30, 2021 at 06:09AM by sona
https://ift.tt/3diFFld
New post on /r/flutterdev subreddit:

A Scalable Approach to Localization for Flutter
Hey, I recently wrote an article on Medium about how to build a scalable localization architecture for your Flutter app. The proposed system supports real-time updates of translations independent of app releases and the ability to add new locales in a matter of seconds. Check it out at https://medium.com/routable-ai/a-scalable-approach-to-localization-for-flutter-4b94ae2f228d.

March 30, 2021 at 07:04AM by arubin18
https://ift.tt/2PJRRTN
New post on /r/flutterdev subreddit:

Flutter using VS Code Autocomplete for beginners any good?
Hey, hello!I am a flutter beginner and I just now got a thought that, is using or I usually use VScode for flutter and yes those amazing extensions which really help me a lot.​but I am worried do, they stop me from remembering or learning the code as most of the code or boiler plate already comes with just a single click most of the time, So, should I use it or not while learning flutter.as mostly it is preferred to learn by turning it of or not using IDE's with this features till the beginner stage completes.​hope you got the point,and sorry for the mistakes!

March 30, 2021 at 06:31AM by chota_balak
https://ift.tt/2QLPHDL
New post on /r/flutterdev subreddit:

Flutter ios image_picker for OCR
Gday m8. I need help on image_picker libraries that cant seems to save the file in state to import it to another pageOnly works on android ATM. Having problem with iOSThe error were stated as below when I wanted to import the imageFile to the next page for OCR[2:10 PM]2021-03-27 09:25:20.140565+0800 Runner[2071:1017673] flutter: Instance of 'FirebaseVisionImage' 2021-03-27 09:25:20.147806+0800 Runner[2071:1017464] Terminating app due to uncaught exception 'FIRInvalidImage', reason: 'Input image must not be nil.' First throw call stack: (0x1aedfb3d 0x1a167067 0x1aedfa85 0x2adcdb 0x320285 0x3200dd 0x31fd89 0x31fb5b 0x20fa20d 0x1c7d9d7 0x1ef525f 0x1eaf8b9 0x1eb0f3b 0x1ae9c637 0x1ae9c339 0x1ae9bd37 0x1ae99dd5 0x1aded1af 0x1adecfd1 0x1c597b41 0x20175a53 0x1014b3 0x1a5da4eb) libc++abi.dylib: terminating with uncaught exception of type NSException[2:12 PM]

March 30, 2021 at 08:46AM by jojos93
https://ift.tt/2PaUj6d
New post on /r/flutterdev subreddit:

It's possible to create directly firebase collection and there fields from flutter also fetch the collections name
.

March 30, 2021 at 08:41AM by Prashant_4200
https://ift.tt/3wdAuMb
New post on /r/flutterdev subreddit:

Using function Widgets inside Stateless Widgets
I am making a page body (Stateless Widget) that is comprised of several elements. For the ease of structure, I have this approach:Widget firstPart() { return Container(child: Text(“first part”)); }Widget secondPart() { return Container(child: Text(“second part”)); }etc.. (this all goes inside the same Stateless widget class)And then for the @build, I combine firstPart(), secondPart() as children of a Column.Does this approach induce any performance hit? Should I make firstPart(), secondPart() separate Stateless widgets, or copy-paste their code to the @build ?Thanks!

March 30, 2021 at 08:31AM by aveMind
https://ift.tt/3cxHr2E