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)),
],
)