📜  颤振安全区 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:07.250000             🧑  作者: Mango

代码示例1
SafeArea(
      bottom: true,
      left: true,
      top: true,
      right: true,
      maintainBottomViewPadding: true,
      minimum: EdgeInsets.zero,
      child: Scaffold(
          appBar: AppBar(title: Text('SizedBox')),
        ),
    ),