We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
susItem 默认有悬浮效果,但是有些case需要关闭悬浮效果,暂时没有开关支持
The text was updated successfully, but these errors were encountered:
不返回susItemBuilder就行,参考contacts_list_page.dart
Sorry, something went wrong.
contacts_list_page
我的意思是需要字母的标识,而不需要滑动之后的悬停效果。
SuspensionView的State 的build方法
Widget build(BuildContext context) { return Stack( children: [ widget.itemCount == 0 ? Container() : ScrollablePositionedList.builder( itemCount: widget.itemCount, itemBuilder: (context, index) => _buildItem(context, index), itemScrollController: itemScrollController, itemPositionsListener: itemPositionsListener, physics: widget.physics, padding: widget.padding, ), //这里是否应该添加开关 _buildSusWidget(context), ], );
@Sky24n 能否请你将软件包更新为新版本的 scrollable_positioned_list ?非常感谢
No branches or pull requests
susItem 默认有悬浮效果,但是有些case需要关闭悬浮效果,暂时没有开关支持
The text was updated successfully, but these errors were encountered: