Документация
ОС Аврора 5.1.4
Менеджер настроек
/*
* SPDX-FileCopyrightText: Copyright 2024 Open Mobile Platform LLC <community@omp.ru>
* SPDX-License-Identifier: Proprietary
*/
/**
* @file
* @brief Содержит пример использования PreferenceManager
*/
import QtQuick 2.0
import Sailfish.Silica 1.0
import ru.auroraos.WebView 1.0
Page {
id: page
Button {
id: btnSwitchImageLoading
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
text: "Переключение загрузки изображений"
onClicked: {
PreferenceManager.imageLoadingEnabled = !PreferenceManager.imageLoadingEnabled;
}
}
WebItem {
id: webView
url: "about:blank"
anchors {
top: btnSwitchImageLoading.bottom
left: parent.left
right: parent.right
bottom: parent.bottom
}
}
}