Center

Center widget in Flutter is used to align a single child widget to the center of its parent widget. It is commonly used to center text, images, and other widgets on the screen.

For example, the following code centers a Text widget in the middle of the screen:

Center(
  child: Text(
    'Hello World',
    style: TextStyle(fontSize: 24),
  ),
)