List library
Library from newsletter Resocoder
Last updated
Library from newsletter Resocoder
Last updated
Shadows for Text and Container got easier
Shine is a package that allows you to define shadows in a more natural way and also to share them between multiple different widgets without any hassle.
Generated get_it saves A LOT of boilerplate ⚙
There's no way around dependency injection if you want your apps to remain testable and maintainable. I truly hope you aren't coding spaghetti! The issue is, setting up all the boilerplate for dependency injection is a hell. Not anymore! The injectable package has come to save the day.
Yet another DI package - but it's powerful!
I know, I know. We have service locators such as get_it and kiwi. Then we have "widget DI" in the form of provider. And now there's KOIN. This name may be familiar to you Kotlin developers out there. While it's not entirely production-ready yet, I'd definitely keep an eye on it.
Zefyr, the rich text EDITOR for Flutter, got an update
I think it's worth mentioning when a good package gets an update after 4 MONTHS of inactivity. Zefyr allows users to write markdown in a nice visual way. This package is a must-have if you want your users to create posts or documents within a Flutter app.
Custom Paint with flutter_turtle
Did you also learn "programming" (the quotes are quite important here ) with Logo? If so, you may appreciate flutter_turtle that allows you to write Logo-esque Dart code to paint stuff on the screen using the CustomPainter.