ios radars page scroll physics bug fixed
This commit is contained in:
parent
0d889c7a20
commit
ce0b7f47a2
|
|
@ -65,7 +65,7 @@ class _RadarState extends State<Radar> {
|
||||||
CustomScrollView(
|
CustomScrollView(
|
||||||
physics: _isAnimating
|
physics: _isAnimating
|
||||||
? const NeverScrollableScrollPhysics()
|
? const NeverScrollableScrollPhysics()
|
||||||
: const ScrollPhysics(),
|
: const ClampingScrollPhysics(),
|
||||||
controller: _scrollController,
|
controller: _scrollController,
|
||||||
slivers: [
|
slivers: [
|
||||||
const SliverToBoxAdapter(child: LogoAppBar()),
|
const SliverToBoxAdapter(child: LogoAppBar()),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue