mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-15 14:05:17 +00:00
11 lines
232 B
QML
11 lines
232 B
QML
import QtQuick 2.6
|
|
import Sailfish.Silica 1.0
|
|
|
|
ViewPlaceholder {
|
|
property var itemData
|
|
|
|
enabled: true
|
|
text: qsTr("Item type (%1) unsupported").arg(itemData.Type)
|
|
hintText: qsTr("This is still an alpha version :)")
|
|
}
|