What are flutter packages?
Flutter packages are useful pre-made bundles of code that make it easy to add features and functionality to your Flutter app without starting from scratch. Let’s explore some of them and how they can supercharge your app development.
Packages I Love
1. flutter_login
Simplifies the implementation of user authentication and login screens.
https://pub.dev/packages/flutter_login
2. card_swiper
Swiper/Carousel for flutter, with multiple layouts, infinite loop. Compatible with Android & iOS.
https://pub.dev/packages/card_swiper
3. icons_plus
multiple popular icon packs in one place.
https://pub.dev/packages/icons_plus
4. badges
Creating badges. Badges can be used for an additional marker for any widget, e.g. show a number of items in a shopping cart.
https://pub.dev/packages/badges
5. crypto
A set of cryptographic hashing functions for Dart.
SHA-256, MDA5, SHA-512 and many more.
https://pub.dev/packages/crypto
6. fl_chart
Customizable chart library that supports Line Chart, Bar Chart, Pie Chart, Scatter Chart, and Radar Chart.
https://pub.dev/packages/fl_chart
7. flutter_map
Leafleet based map for displaying markers and layers.
https://pub.dev/packages/flutter_map
8. flutter_rating_bar
Customizable rating bar for flutter which also include a rating bar indicator, supporting any fraction of rating.
https://pub.dev/packages/flutter_rating_bar
9. flutter_staggered_grid_view
collection of Flutter grids layouts (staggered, masonry, quilted, woven, etc.).
https://pub.dev/packages/flutter_staggered_grid_view
10. image_picker
Select images from gallery or Camera
https://pub.dev/packages/image_picker
11. pinput
Pin code input field. It offers several features such as animated decoration switching, form validation, SMS autofill, custom cursor, copying from clipboard, and more. It also provides beautiful examples that you can choose from.
https://pub.dev/packages/pinput
12. table_calendar
Customizable Calendar widget for Flutter
https://pub.dev/packages/table_calendar
13. upgrader
Prompting users to upgrade when there is a newer version of the app in the store.
https://pub.dev/packages/upgrader
14. wakelock
Keep the device screen awake
https://pub.dev/packages/wakelock
15. readmore
Expand and collapse on text.
https://pub.dev/packages/readmore
16. Freezed
Generates Code-
toString
Equality override
hashCode override
copyWith
freezed+json_serializable package tutorial
https://pub.dev/packages/freezed
17. json_serializable
Generates Code-
FromJson
toJson
freezed+json_serializable package tutorial
https://pub.dev/packages/json_serializable
Leave a Reply