shouldHugContentInPrimaryAxis property
bool
get
shouldHugContentInPrimaryAxis
Whether the container should hug its content in the primary axis
Implementation
bool get shouldHugContentInPrimaryAxis {
return getCached("shouldHugContentInPrimaryAxis", () {
return primaryAxisSizingMode == figma.PrimaryAxisSizingMode.auto;
});
}