Fix end scroll
This commit is contained in:
parent
8372769fbb
commit
f256b1aee7
1 changed files with 9 additions and 3 deletions
|
@ -74,14 +74,20 @@ class _HomePageState extends State<HomePage> {
|
|||
(element) => element!.uuid == snapshot.data!.uuid,
|
||||
orElse: () => null) !=
|
||||
null;
|
||||
if (!alreadyAdded) streamElements.add(snapshot.data!);
|
||||
if (!alreadyAdded) {
|
||||
streamElements.add(snapshot.data!);
|
||||
}
|
||||
}
|
||||
return ListView.builder(
|
||||
itemCount: streamElements.length,
|
||||
controller: _scrollController,
|
||||
itemBuilder: (BuildContext context, int index) {
|
||||
_scrollController
|
||||
.jumpTo(_scrollController.position.maxScrollExtent);
|
||||
WidgetsBinding.instance!.addPostFrameCallback((timeStamp) {
|
||||
_scrollController.animateTo(
|
||||
_scrollController.position.maxScrollExtent,
|
||||
duration: const Duration(milliseconds: 500),
|
||||
curve: Curves.easeOut);
|
||||
});
|
||||
return StreamElementCard(
|
||||
streamElement: streamElements[index]);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue