flutter获取状态栏高度及安全区域

上下左右安全区域

Widget build(BuildContext context) {
  return Material(
    color: Colors.blue,
    child: SafeArea(
      child: SizedBox.expand(
        child: Card(color: Colors.yellowAccent),
      ),
    ),
  );
}

2底部不设置安全区域

Widget build(BuildContext context) {
  return Material(
    color: Colors.blue,
bottom: false,  
    child: SafeArea(
      child: SizedBox.expand(
        child: Card(color: Colors.yellowAccent),
      ),
    ),
  );
}

你可能感兴趣的:(flutter使用记录)