Flutter 扩展的联动Tabs,涨姿势

((!onLeftEdge &&
_ancestor._pageController.offset !=
_ancestor._pageController.position.maxScrollExtent));
}

3.将上层TabBarView的_pageController改变为offset+拖动overscroll的。这样效果就完成了。

_ancestor._pageController.position.moveTo(
_ancestor._pageController.offset +
overscrollNotification.overscroll);

4.如果上层可以滑动,我们需要去掉overscroll的阻尼效果。 首先在增加对OverscrollIndicatorNotification的监听

return NotificationListener(
onNotification: _handleScrollNotification,
child: NotificationListener(
onNotification: _handleGlowNotification,
child: ExtendedPageView(
controller: _pageController,
physics: widget.physics == null
? _kTabBarViewPhysics
: _kTabBarViewPhysics.applyTo(widget.physics),
children: _children,
),
),
);

判断是否上层TabBarView能否滑动

bool _handleGlowNotification(OverscrollIndicatorNotification notification) {
debugPrint

Flutter中实现左右联动效果,通常是通过状态管理来控制两个组件之间的相互影响。一个常见的应用场景是滑动导航菜单(Drawer)和页面内容之间的联动,当用户在导航菜单中选择一个选项时,主内容区域会相应地更新显示对应的内容。实现这种效果可以使用各种状态管理工具,如setState()、Provider、Bloc等。 以下是使用setState()来实现简单的左右联动的一个基本例子: 1. 创建一个StatefulWidget,它会包含两个子部件,一个用于显示左右两部分的内容,一个用于滑动联动的状态控制。 2. 使用Row或Stack等布局组件来放置左右两部分的部件。 3. 左侧部件可以是一个列表或者菜单项,右侧部件是主内容显示区。 4. 为左侧的每个菜单项设置点击事件,当点击菜单项时,通过调用setState()更新一个状态变量,这个状态变量用于控制右侧部件显示的内容。 ```dart class LeftRightExample extends StatefulWidget { @override _LeftRightExampleState createState() => _LeftRightExampleState(); } class _LeftRightExampleState extends State<LeftRightExample> { int selectedIndex = 0; // 控制右侧显示内容的索引 void updateIndex(int index) { setState(() { selectedIndex = index; }); } @override Widget build(BuildContext context) { return Row( children: <Widget>[ // 左侧菜单 Container( width: 100, child: ListView.builder( itemCount: 3, itemBuilder: (context, index) { return ListTile( title: Text('Item $index'), onTap: () => updateIndex(index), ); }, ), ), // 右侧内容区 Expanded( child: Center( child: Text('Content of item $selectedIndex'), ), ), ], ); } } ``` 在上述代码中,左侧的菜单项使用了ListTile,并在onTap事件中调用updateIndex方法,该方法通过setState更新状态变量selectedIndex的值。右侧的部件根据selectedIndex的值来动态显示不同的内容。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值