📌  相关文章
📜  参数类型 'ResponsiveAppBar' 不能分配给参数类型 'PreferredSizeWidget?'.dart(argument_type_not_assignable) - 任何代码示例

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

代码示例1
Scaffold(
  appBar: PreferredSize(
    preferredSize: const Size.fromHeight(100),
    child: Container(color: Colors.red),
  ),
)