1. SizedBox(
    2. width: 300,
    3. height: 150,
    4. child: OverflowBox(
    5. alignment: Alignment.topLeft,
    6. maxWidth: 300,
    7. maxHeight: 300,
    8. child: Container(
    9. width: 300,
    10. height: 200,
    11. color: Colors.yellowAccent,
    12. ),
    13. ),
    14. ),