向上滚动时隐藏BottomNavigationBar

时间:2020-07-25 15:29:58

标签: flutter

在第三项中使用BottomNavigationBar,我有1个ListView.builder

如何在向上滚动时隐藏BottomNavigationBar

提供的代码:

Widget build(BuildContext context) {
return Scaffold(
  appBar: AppBar(
    title: Text("Go Bid"),
    backgroundColor: Colors.green,
  ),
  body: tabs[_currentIndex],
  bottomNavigationBar: Container(
    child: BottomNavigationBar(
      currentIndex: _currentIndex,
      type: BottomNavigationBarType.fixed,
      backgroundColor: Colors.green,
      items: const [
        BottomNavigationBarItem(
            icon: Icon(Icons.home),
            title: Text("Status"),
            backgroundColor: Colors.green
        ),
        BottomNavigationBarItem(
            icon: Icon(Icons.search),
            title: Text("Search"),
            backgroundColor: Colors.green
        ),
      ],
    ),
  ),
);  

0 个答案:

没有答案