DEVTO
DuitDataSource: The Data Layer That Quietly Changed Everything in Duit
1000 widget update iterations: about 1.9 seconds with the old attribute-based approach, 114 ms with the newer one. That gap is the reason this article exists. In Duit, widget updates used to revolve a...
PUBDEV
cupertino_liquid_glass v0.1.0
A premium Flutter widget that replicates Apple's iOS Liquid Glass blur and translucency design language with native-feel BackdropFilter effects, dynamic light/dark theme support, and ProMotion-optimiz...
PUBDEV
vn_date_formatter v1.0.0
A Dart/Flutter package for formatting and converting dates with Vietnamese locale support. Provides common date patterns, conversion utilities, and Vietnamese weekday/relative-time labels.
REDDIT
Serverpod just opened a webpage when running pub get!
I have never had a package trigger opening of a webpage. I think this is unacceptable for a variety of reasons and shows a total lack of judgement. Why is this a problem? Well, the page could contain ...
PUBDEV
alice_manager v1.0.8
Alice is an HTTP Inspector tool which helps debugging http requests. It catches and stores http requests and responses, which can be viewed via simple UI.
PUBDEV
brick_base v1.0.0
Production-ready Flutter base package with API client, secure storage, extensions, and exception handling.
DEVTO
Flutter Interview Questions Part 6: Advanced Flutter — Platform Channels, Internals, Keys & Animations
Welcome to Part 6 of the Flutter Interview Questions 2025 series! This part dives into advanced Flutter territory covering Platform Channels (MethodChannel, EventChannel, BasicMessageChannel), Flutter...
PUBDEV
smart_location v0.0.1
Smart Location is a Flutter package that provides an all-in-one solution for location handling, including real-time updates, last known location, geofencing, distance & bearing calculations, backgroun...
PUBDEV
thermal v1.2.0
Flutter plugin for accessing the device's thermal state to detect if the device is undergoing thermal throttling.
DEVTO
Flutter vs React Native in 2026: Which Should You Pick?
Flutter vs React Native in 2026: Which Should You Pick? Most comparison articles are written by teams that only use one framework. Geminate Solutions uses both — Flutter for 60% of mobile projects and...
PUBDEV
flutter_typeahead_new v5.2.1
A highly customizable typeahead (autocomplete) text input field for Flutter
PUBDEV
sim_info_plugin v1.0.1
A Flutter plugin to retrieve SIM card information including phone number and carrier name on Android.
PUBDEV
print_remover v1.1.0
Automatically removes all print() and debugPrint() statements from Dart files. Supports dry-run, custom paths, and verbose output.
PUBDEV
struct_data v0.1.1
Binary data manipulation, and serialization utilities for Dart. Binary value conversions. Structured view using Field descriptors. Lightweight serialization for general classes without code generati...
PUBDEV
awesome_alert_pro v1.0.0
A beautiful, customizable, and modern Flutter alert dialog package with smooth UI, animations, and multiple alert types.
REDDIT
I got tired of manually syncing APIs with Dart â so I built a framework that generates the Dart SDK automatically
In onedef, the struct is the API contract. type GetUserAPI struct { onedef.GET `path:"/users/{id}"` Request struct{ ID string } Response User } func (h *GetUserAPI) Handle(ctx context.Context) error...