responsive_addons 2.0.0
responsive_addons: ^2.0.0 copied to clipboard
A powerful Flutter package that provides responsive UI utilities and a Bootstrap-style grid system for building adaptable layouts across all screen sizes and devices.
❌ Deprecated: Responsive Addons (Legacy) #
This package provides a simple set of responsive extensions (
.h,.w,.sp, etc.) based on a fixed Figma design frame.
It usesMediaQueryData.fromWindow(ui.window)for resolution-independent scaling.
⚠️ Deprecation Notice #
This package is no longer actively maintained.
We recommend switching to the official and more robust package:
✅ responsive_master #
- Modern, modular, and scalable
- Built-in support for:
- Percentage-based units (
.ph,.pw) - Design scaling modes (
.h,.w,.sp,.r) - Bootstrap-style grid and layout
- Breakpoint utilities (
context.isSm, etc.) - Custom error screen and orientation control
- Percentage-based units (
Example #
Text(
'Hello',
style: TextStyle(fontSize: 16.sp),
);
SizedBox(
width: 100.w,
height: 50.h,
);