Flutter Safearea

SafeArea(
      bottom: true,
      left: true,
      top: true,
      right: true,
      maintainBottomViewPadding: true,
      minimum: EdgeInsets.zero,
      child: Scaffold(
          appBar: AppBar(title: Text('SizedBox')),
		),
    ),
Sore Serval