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

outdated

This package allows you to apply values depending on media breakpoint provided.

Apply values per media breakpoints. Breakpoints are similar to the breakpoints used in bootstrap css framework. https://getbootstrap.com/docs/4.1/layout/overview/#responsive-breakpoints

example #

Media Breakpoint demo

Container c = Container(
    padding: valueFor<EdgeInsetGeometry>(
    context,
    xs:EdgeInsets.only(left: 25, right: 20),
    md:EdgeInsets.only(left: 25, right: 20),
    lg:EdgeInsets.only(left: 25, right: 20),
    )
);
double num = valueFor<double>(
  context, 
  xs:1,
  sm:2,
  md:3,
  lg:4,
  xl:4,
);
4
likes
0
pub points
14%
popularity

Publisher

verified publisherglenfordwilliams.com

This package allows you to apply values depending on media breakpoint provided.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on media_break_points