import QtQuick 2.5 import fbx.application 1.0 import "Views" 1.0 Application { Image { source: "icon.png" } Text { text: "Connect to Jellifyn server" } GridView { model: ViewLogin {} delegate: Column { Text { text: name; anchors.horizontalCenter: parent.horizontalCenter } } } }