Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

overflow box flutter

// this will give you any size you want not considering it's parent size and
// will also not give you any overflow error even if any(unlike unconstrained box)
OverflowBox(
      minWidth: 0.0,
      minHeight: 0.0,
      maxWidth: double.infinity,
      maxHeight: double.infinity,
      child: Container(color: red, width: 4000, height: 50),
    )
 
PREVIOUS NEXT
Tagged: #overflow #box #flutter
ADD COMMENT
Topic
Name
1+8 =