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

A Responsive Container that behaves normally in small screens, but wraps your content in a box for big screens. (for Adaptive Web & Mobile designs)

A Responsive Container that behaves normally in small screens, but wraps your content in a box for big screens. Web & Mobile adaptive design.

Features #

  • Easy to implement.
  • Automatically adjust based on the device screen.
  • Wraps your content in a box for big screens and web development.
  • Responsive for mobile apps.
  • Fully customizable.

Install #

const like = 'sample';
const like = 'sample';

Usage #

ResponsiveContainer(
    child: Text("This is Awesome!!!"),
)

Customization #

ResponsiveContainer(

    // Max breakpoint width for the responsive container
    maxWidth: 600,
    // Specify a fixed height (Full Screen by default)
    height: 170,
    // Force wrap container's height around content
    wrapHeight: true,
    
    // Color of the main container (box holding your content)
    colorContainer: Colors.black,
    // Color for the responsive background (appears only when screen passes the maxWidth value)
    colorBackground: Colors.blueGrey,
    
    
    child: Text("This is Awesome!!!"),
)
4
likes
150
points
35
downloads

Publisher

unverified uploader

Weekly Downloads

A Responsive Container that behaves normally in small screens, but wraps your content in a box for big screens. (for Adaptive Web & Mobile designs)

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSL-1.0 (license)

Dependencies

flutter

More

Packages that depend on responsive_wrap_container