SafeArea

作者: 不二客 | 来源:发表于2020-08-19 13:56 被阅读0次

SafeArea

一种小部件,通过足够的填充插入子控件,以避免操作系统的入侵。

const SafeArea({
    Key key,
    this.left = true, //避免左边的系统入侵。
    this.top = true,
    this.right = true,
    this.bottom = true,
    this.minimum = EdgeInsets.zero, //要应用的最小填充。
    this.maintainBottomViewPadding = false,
    @required this.child,
  })

相关文章

网友评论

      本文标题:SafeArea

      本文链接:https://www.haomeiwen.com/subject/ueqtrktx.html