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

Intermediate/advanced Flutter resources?
I’m a self taught Flutter developer like many people here, and have managed to secure myself a really good position at a very promising startup. However, the impostor syndrome is really starting to rear it’s head, and I feel like I need to be doing more learning to make sure I’m staying sharp while this position grows. I wanted to see what concepts people thought would be good to start looking into (except state management, been burning my eyes out reading about that lately!).Any must have integrations people are using, lesser known native tools, etc. would be greatly appreciated!

June 17, 2021 at 09:17AM by Low_Examination2835
https://ift.tt/3gxWc7O
New post on /r/flutterdev subreddit:

Package update: in_app_notification v0.3.0, overall changes of API!
https://pub.dev/packages/in_app_notificationNow, this package uses OverlayEntry to show notification, instead of Stack. In addition, this change makes more simplify usage of InAppNotification Widget.

June 17, 2021 at 12:15PM by Kurogoma4D
https://ift.tt/3cOcpmN
New post on Flutter Dev Google group:

Integrate Flutter app as a plugin to an Android app
So I have a fully ready Flutter app that is published to the Play Store, and would like to integrate it into an existing Android app. I did find documentation on this, but the catch in my case, is that I do not want to expose my Dart code to the Android app development team. The situation is

June 17, 2021 at 12:37PM by Aarush Yadav
https://ift.tt/3vtGAGp
New post on /r/flutterdev subreddit:

Simple question about Types
So the example value I get using Form Builder CheckBox is [127, 128, 129] which are ids.When I check the type of this it’s not an array nor int nor String but comes up true for Object since everything is an object.Anyway, how do I get those 3 values? What type is that value?

June 17, 2021 at 01:36PM by JapanEngineer
https://ift.tt/3xqnlPy
New post on Flutter Dev Google group:

Contract Job Opportunities // Hot Requirements // Immediate interviews
Hello Associates, Note : Kindly go through the below positions and do let me know your interest. Kindly share suitable profiles at *Austi...@mirthconsulting.net
New post on /r/flutterdev subreddit:

Using Firebase in your Flutter Apps | Setting up everything
https://ift.tt/3vwT0xd

June 17, 2021 at 03:44PM by aravichowkam
https://ift.tt/3q1DGYB
New post on Flutter Dev Google group:

Design of Data in Multiple Widgets as a beginner
Hi, I looked through some tutorials and got confused with Stateless/Stateful, Inherited, Streams and global Keys and couldn't connect it to my problem. So I would appreciate help giving me an initial direction how to approach my problem: I have a bottom nav with three widgets which contain

June 17, 2021 at 04:15PM by Uwe Specht
https://ift.tt/3vx4rF9
New post on /r/flutterdev subreddit:

Flutter with Firebase&Stripe Build shop app from scratch - free course from udemy for 5Hrs
https://ift.tt/3q3VORk

June 17, 2021 at 06:21PM by Ordinary_Craft
https://ift.tt/3vxlmaD
New post on /r/flutterdev subreddit:

Learn Hive the Right way !
Ever thought about learning Hive ? Say no more... Here is an article using which you can get started with HiveDB.https://infiniteoverflow.hashnode.dev/hive-the-right-way

June 17, 2021 at 07:34PM by Negative-Capital-570
https://ift.tt/35z6gqC
New post on /r/flutterdev subreddit:

Flutter: Reduce Render Time
The main idea is to avoid the widget state changes. It’s cool that you can declare some variable at the state class level, build UI for the widget partially using this state variable, and by calling method “setState” provide a callback with needed lines to change the state then re-render the widget with updated state. But in this case, you’ll rebuild a whole widget, even if a small part of it using the state you will waste CPU/GPU time.https://medium.com/litslink/flutter-reduce-render-time-ed5580377428

June 17, 2021 at 07:30PM by alex_melnyk
https://ift.tt/3vAxxUm
New post on /r/flutterdev subreddit:

Material Theme Editor & Code Generator
Hi i hope this is ok to post, I've been working on a material theme editor that lets you rapidly prototype how a material theme will look and then generate the ThemeData() that you can then copy into your app.It doesn't cover everything in ThemeData but it does cover most of the basics that you would want and i intend to add more in the future.I hope you can find it useful.https://flutter-theme-editor.rob-b.co.ukSorry mobile users its not really responsive yet as its kind of expected you will be looking at it on the computer you are coding on.

June 17, 2021 at 08:43PM by bigbadbob2003
https://ift.tt/2U9ZKUR
New post on /r/flutterdev subreddit:

Flutter: Reduce Render Time
https://ift.tt/3vA6atx

June 17, 2021 at 10:56PM by alex_melnyk
https://ift.tt/3gKp7Ei
New post on /r/flutterdev subreddit:

Why are so many firebase plugins in firebase in beta?
And also why was the firebase ml kit deprecated?

June 17, 2021 at 11:39PM by Similar-Dust-2338
https://ift.tt/35x1g5Y
New post on /r/flutterdev subreddit:

Announcing jovial_svg, a Flutter Scalable Vector Graphics library
Hi all,I just published an SVG library for Flutter that some might find useful. The existing alternatives I was able to find didn't work with the SVG files I had (from an open-source program I'm porting to Flutter), and workflows like converting through AVDs came up short on some of the images, too. After running into a few brick walls, I decided there were enough structural and performance issues that I just made my own.I tried to be careful to make the profile features be a predictable set, based on published SVG specs (notably, SVG 1.1 and SVG Tiny 1.2). The library is intended for static SVG images, so CSS and a DOM aren't supported. (Well, it wouldn't be *that* hard to add a DART DOM wrapper around the SVG parse tree to support animation from dart code, but I stopped myself before going down that rabbit hole. At least for now :-) ) AFAIK there are no unexpected implementation limitations (like not processing forward references).I also made a fast-loading binary format, so I can load pre-parsed application resource images an order of magnitude faster than is possible when parsing XML. There is, of course, a command-line program to convert SVG files (and Android Vector Drawables) to this binary format. With this, it's plenty fast and compact even on the web runtime, like on my HP 16C calculator - I'd hesitate to include a whole XML parser in a Flutter web app, just for an icon! It's free - BSD license, source available, etc.Let me know if you find this useful.https://github.com/zathras/jovial_svg/https://pub.dev/packages/jovial_svg(BTW, the "jovial" is after the computer language JOVIAL, which has been in the family since the late '50s. Full story on that over at https://jovial.com/.)(Post moved from dartlang reddit -- I guess they keep flutter stuff out of there?)

June 18, 2021 at 02:10AM by Zathras_II
https://ift.tt/3wCu74M