make memories always scrollable
This commit is contained in:
parent
4bac11e81a
commit
08079a3945
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