mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix(settings-view): list items jumping on scroll up (#1375)
This commit is contained in:
parent
d577e97758
commit
5d5f311e36
1 changed files with 17 additions and 10 deletions
|
@ -40,6 +40,11 @@ class SettingsView extends StatelessWidget {
|
||||||
SliverList(
|
SliverList(
|
||||||
delegate: SliverChildListDelegate.fixed(
|
delegate: SliverChildListDelegate.fixed(
|
||||||
<Widget>[
|
<Widget>[
|
||||||
|
ListView(
|
||||||
|
padding: EdgeInsets.zero,
|
||||||
|
shrinkWrap: true,
|
||||||
|
physics: NeverScrollableScrollPhysics(),
|
||||||
|
children: const [
|
||||||
SUpdateThemeUI(),
|
SUpdateThemeUI(),
|
||||||
// SUpdateLanguageUI(),
|
// SUpdateLanguageUI(),
|
||||||
// _settingsDivider,
|
// _settingsDivider,
|
||||||
|
@ -52,6 +57,8 @@ class SettingsView extends StatelessWidget {
|
||||||
SInfoSection(),
|
SInfoSection(),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue