multi_screen_builder 1.1.0 copy "multi_screen_builder: ^1.1.0" to clipboard
multi_screen_builder: ^1.1.0 copied to clipboard

This allows MultiScreenBuilder helps to develope different layout for mobile , table and desktop/web with custom breakpoints with ease.

Getting started #

MultiScreenBuilder helps to develope different layout for mobile , table and desktop/web with custom breakpoints with ease.

Example #

example of using ResponsiveBuilder

MultiScreenBuilder(
      mobileBuilder: (context, constraints) {
        return const MobileView();
      },
      tabletBuilder: (context, constraints) { 
        return const TabletView(),
      },
      desktopBuilder: (context, constraints) {
        return Column(
          children: const [
            YourWidgetsHere(),
            ....
          ],
        );
      },
    )

Additional information #

check the device type based on screen size.

    // mobile
    MultiScreenBuilder.isMobile(context);

    // tablet
    MultiScreenBuilder.isTablet(context);

    // desktop
    MultiScreenBuilder.isDesktop(context);

1
likes
140
points
22
downloads

Publisher

verified publisherkanakapalli.in

Weekly Downloads

This allows MultiScreenBuilder helps to develope different layout for mobile , table and desktop/web with custom breakpoints with ease.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on multi_screen_builder