auto_responsive_layout 0.0.1 copy "auto_responsive_layout: ^0.0.1" to clipboard
auto_responsive_layout: ^0.0.1 copied to clipboard

A Flutter package that provides responsive flex layouts

responsive_wrapper_impl #

A simple responsive wrapper for Flutter that automatically switches between row and column layouts based on screen width.
Perfect for building adaptive and fluid interfaces for mobile, tablet, and web.


🚀 Features #

✅ Auto switch between row and column layouts
✅ Smooth animated transitions
✅ Works on mobile, tablet, and web
✅ Easy customization for spacing, alignment, and animation


dependencies:
  auto_responsive_layout: ^0.0.1

## 📱 Example

```dart

ResponsiveFlex(
    breakpoint: 800,
    spacing: 5,
    children: [
      Flexible(child: Container(color: Colors.black54, height: 100)),
      Flexible(child: Container(color: Colors.green, height: 100)),
      Flexible(child: Container(color: Colors.black54, height: 100)),
      Flexible(child: Container(color: Colors.green, height: 100)),
    ],
 )
0
likes
160
points
41
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides responsive flex layouts

Homepage

License

MIT (license)

Dependencies

flutter

More

Packages that depend on auto_responsive_layout