HOTFIX: Remove clear downloaded files setting

This commit is contained in:
Anton Stubenbord
2023-02-15 00:36:26 +01:00
parent add035189c
commit 8d1227f0db
2 changed files with 8 additions and 8 deletions

View File

@@ -58,13 +58,13 @@ class SettingsPage extends StatelessWidget {
Text(S.of(context).settingsPageSecuritySettingsDescriptionText),
onTap: () => _goto(const SecuritySettingsPage(), context),
),
ListTile(
// leading: const Icon(Icons.storage_outlined),
title: Text(S.of(context).settingsPageStorageSettingsLabel),
subtitle:
Text(S.of(context).settingsPageStorageSettingsDescriptionText),
onTap: () => _goto(const StorageSettingsPage(), context),
),
// ListTile(
// // leading: const Icon(Icons.storage_outlined),
// title: Text(S.of(context).settingsPageStorageSettingsLabel),
// subtitle:
// Text(S.of(context).settingsPageStorageSettingsDescriptionText),
// onTap: () => _goto(const StorageSettingsPage(), context),
// ),
],
),
);