proporción
// Create a Orange Container with 0.2 device width and 0.5 device height
FractionallySizedBox(
widthFactor: 0.2,
heightFactor: 0.5,
child: Container(
color: Colors.orange,
),
Breakable Buzzard