mirror of
https://github.com/venera-app/venera.git
synced 2025-09-27 07:47:24 +00:00
hide "Copy to app local path" option on iOS and macOS
This commit is contained in:
@@ -563,15 +563,16 @@ class _ImportComicsWidgetState extends State<_ImportComicsWidget> {
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
).paddingHorizontal(8),
|
).paddingHorizontal(8),
|
||||||
CheckboxListTile(
|
if(!App.isIOS && !App.isMacOS)
|
||||||
enabled: true,
|
CheckboxListTile(
|
||||||
title: Text("Copy to app local path".tl),
|
enabled: true,
|
||||||
value: copyToLocalFolder,
|
title: Text("Copy to app local path".tl),
|
||||||
onChanged:(v) {
|
value: copyToLocalFolder,
|
||||||
setState(() {
|
onChanged:(v) {
|
||||||
copyToLocalFolder = !copyToLocalFolder;
|
setState(() {
|
||||||
});
|
copyToLocalFolder = !copyToLocalFolder;
|
||||||
}).paddingHorizontal(8),
|
});
|
||||||
|
}).paddingHorizontal(8),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
Text(info).paddingHorizontal(24),
|
Text(info).paddingHorizontal(24),
|
||||||
],
|
],
|
||||||
|
Reference in New Issue
Block a user