我有 ListView,当我滚动列表时,我想显示标题中的数据,该标题超出了 appBar 的屏幕顶部。StickyHeader 不建议。我特别需要在我试图使用滚动控制器但没有成功的 appBar 中显示标题中的信息 var _controller = ScrollController();
@override
void initState() {
super.initState();
// Setup the listener.
_controller.addListener(() {
if (_controller.position.atEdge) {
if (_controller.position.pixels == 0) {
// You're at the top.
} else {
// You're at the bottom.
}
}
});
}
事实证明,只有当我回到列表顶部时才会显示一些东西。但我找不到摆脱困境的方法来显示信息
从列表顶部的每个标题中,所以我想将“不粘示例”替换为“标题#0”,当它位于顶部时,以及当“标题#2”位于顶部时以在 appBar 上显示它