make memories always scrollable (#1670)
This commit is contained in:
commit
33976ee8a0
1 changed files with 3 additions and 1 deletions
|
@ -91,7 +91,9 @@ class _MemoriesWidgetState extends State<MemoriesWidget> {
|
|||
return SizedBox(
|
||||
height: _maxHeight,
|
||||
child: ListView.builder(
|
||||
physics: const BouncingScrollPhysics(),
|
||||
physics: const AlwaysScrollableScrollPhysics(
|
||||
parent: BouncingScrollPhysics(),
|
||||
),
|
||||
scrollDirection: Axis.horizontal,
|
||||
controller: _controller,
|
||||
itemCount: collatedMemories.length,
|
||||
|
|
Loading…
Add table
Reference in a new issue