mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-19 05:00:21 +02:00
Export settings (#1157)
This commit is contained in:
@@ -388,6 +388,14 @@ class _ImportExportPageState extends State<ImportExportPage> {
|
||||
defaultValue: settingsProvider
|
||||
.autoExportOnChanges,
|
||||
)
|
||||
],
|
||||
[
|
||||
GeneratedFormSwitch(
|
||||
'exportSettings',
|
||||
label: tr('includeSettings'),
|
||||
defaultValue: settingsProvider
|
||||
.exportSettings,
|
||||
)
|
||||
]
|
||||
],
|
||||
onValueChanges:
|
||||
@@ -400,6 +408,12 @@ class _ImportExportPageState extends State<ImportExportPage> {
|
||||
'autoExportOnChanges'] ==
|
||||
true;
|
||||
}
|
||||
if (value['exportSettings'] !=
|
||||
null) {
|
||||
settingsProvider.exportSettings =
|
||||
value['exportSettings'] ==
|
||||
true;
|
||||
}
|
||||
}
|
||||
}),
|
||||
],
|
||||
|
Reference in New Issue
Block a user