mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
fix(settings-view): list items jumping on scroll up (#1375)
This commit is contained in:
parent
d577e97758
commit
5d5f311e36
@ -40,16 +40,23 @@ class SettingsView extends StatelessWidget {
|
|||||||
SliverList(
|
SliverList(
|
||||||
delegate: SliverChildListDelegate.fixed(
|
delegate: SliverChildListDelegate.fixed(
|
||||||
<Widget>[
|
<Widget>[
|
||||||
SUpdateThemeUI(),
|
ListView(
|
||||||
// SUpdateLanguageUI(),
|
padding: EdgeInsets.zero,
|
||||||
// _settingsDivider,
|
shrinkWrap: true,
|
||||||
STeamSection(),
|
physics: NeverScrollableScrollPhysics(),
|
||||||
_settingsDivider,
|
children: const [
|
||||||
SAdvancedSection(),
|
SUpdateThemeUI(),
|
||||||
_settingsDivider,
|
// SUpdateLanguageUI(),
|
||||||
SExportSection(),
|
// _settingsDivider,
|
||||||
_settingsDivider,
|
STeamSection(),
|
||||||
SInfoSection(),
|
_settingsDivider,
|
||||||
|
SAdvancedSection(),
|
||||||
|
_settingsDivider,
|
||||||
|
SExportSection(),
|
||||||
|
_settingsDivider,
|
||||||
|
SInfoSection(),
|
||||||
|
],
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user