Skip to content

nemomobile-ux/nemo-qml-plugin-settings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nemomobile qml wrapper for QSettings class

Upsage:

import QtQuick 2.0
import org.nemomobile.settings 1.0

Item{
        Settings{
                id: mainSettings
        }

            Component.onComplited{
                    mainSettings.setValue("key","hello");
                    var value = mainSettings.value("key");
            }

            Connections{
                    target: mainSettings
                    onValueChange: {
                            console.log("key "+key+" changed! Current value is:"+value);
                    }
            }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •