SizedBox in Flutter

SizedBox widget in Flutter — with example code and explanation of its most important use cases.

Source Code​

				
					SizedBox(
  width: 200,
  height: 100,
  child: ElevatedButton(
    onPressed: () {},
    child: Text('Fixed Size Button'),
  ),
)


//SizedBox For spacing

Row(
  children: [
    Icon(Icons.star),
    SizedBox(width: 10), // Adds horizontal space
    Text('Rated'),
  ],
)

				
			

Ai Code Analizer

🎨 3. Important Properties

PropertyDescription
widthSets fixed width for the box or child
heightSets fixed height for the box or child
childOptional: Wrap another widget inside it