pub trait BoxWithConstraintsScope: BoxScope {
// Required methods
fn constraints(&self) -> Constraints;
fn min_width(&self) -> Dp;
fn max_width(&self) -> Dp;
fn min_height(&self) -> Dp;
fn max_height(&self) -> Dp;
}Expand description
Scope exposed to [BoxWithConstraints] content.