proxy_layout 2.0.0 copy "proxy_layout: ^2.0.0" to clipboard
proxy_layout: ^2.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: (context) => Text('Mobile widget'),
        tablet: (context) => Text('Tablet widget'),
      ),

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

If you don't want to specify mobile and tablet you can use builder attribute that will let you know if you are on tablet or mobile with DeviceProxyType enum.

The is isMobile and isTablet static methods available if you need to know at some point the device type to tweak some attributes.

OrientationProxy #

OrientationProxy(
          landscape: (context) => Text('Landscape widget'),
          portrait: (context) => Text('Portrait widget'),
        ),

If you don't want to specify portrait and landscape you can use builder attribute that will let you know which orientation you are with DeviceOrientationType enum.

The is isPortrait and isLandscape static methods available if you need to know at some point the orientation to just tweak some attributes.

4
likes
0
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