如何在Flutter中具有这样的Tabbar视图?

时间:2019-04-18 09:53:48

标签: android dart flutter tabbar

我想让这样的标签栏变得扑朔迷离。但是找不到任何解决办法

enter image description here

1 个答案:

答案 0 :(得分:0)

  1. 连续移动容器
    1. 将容器包装在GestureDetector中,然后在onTap中进行导航

新容器(   边距:const EdgeInsets.all(15.0),   填充:const EdgeInsets.all(3.0),   装饰:新BoxDecoration(     边框:新的Border.all(颜色:Colors.red)   ),   子级:new Text(“ Matches”), ), 新容器(   边距:const EdgeInsets.all(15.0),   填充:const EdgeInsets.all(3.0),   装饰:新BoxDecoration(     边框:新的Border.all(颜色:Colors.red)   ),   子级:new Text(“ Standings”), )

相关问题