如何在向下滚动时隐藏自定义应用栏

时间:2020-05-02 14:57:53

标签: flutter

我创建了一个自定义应用栏。我要在向下滚动时隐藏此应用栏。 我应该将所有文件包装在列表中并执行此操作还是其他任何选择? 我在自定义应用栏中找不到任何内容 enter image description here

Widget build(BuildContext context) {
return Scaffold(
  appBar: PreferredSize(
      child: ClipPath(
        clipper: CustomAppBar(),
        child: Container(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              Text(  ' Bike Guru',
                style: GoogleFonts.caveatBrush(
                  fontSize: 40,
                  color: Colors.black,
                  fontWeight: FontWeight.bold,
                ),
              ),
            ],
          ),
        ),
      ),
      preferredSize: Size.fromHeight(kToolbarHeight + 150)),
  body: Column(
    children: <Widget>[
      Expanded(
        child: ListView(      
          children: <Widget>[
            _lineSection("Poplular Motorcycles"),
            _buildStoryListView(),
          ],
        ),
      ),
    ],
  ),
);

}

0 个答案:

没有答案