proxy_layout 1.0.0 copy "proxy_layout: ^1.0.0" to clipboard
proxy_layout: ^1.0.0 copied to clipboard

outdated

Package to select layout per orientation or device size like mobile vs tablet layouts or portrait vs landscape, they can be combine to support full layout customization.

proxy_layout #

pub package

Package to select layout per orientation or device size like mobile vs tablet layouts or portrait vs landscape

Usage #

You have two widgets at your disposal, DeviceProxy to use different widget for mobile and tablet devices, OrientationProxy to use different device depending of the device orientation.

DeviceProxy #

DeviceProxy(
        mobile: Text('Mobile widget'),
        tablet: Text('Tablet widget'),
      ),

The threshold to separate Mobile and Tablet devices is 600, you can override it by setting the threshold attribute.

OrientationProxy #

OrientationProxy(
          landscape: Text('Landscape widget'),
          portrait: Text('Portrait widget'),
        ),
4
likes
30
pub points
54%
popularity

Publisher

verified publisherjaumard.com

Package to select layout per orientation or device size like mobile vs tablet layouts or portrait vs landscape, they can be combine to support full layout customization.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on proxy_layout