import QtQuick 2.12 import QtQuick.Window 2.12 import QtQuick.Controls 2.0 import QtQuick.Layouts 1.0 Popup { id: enctype modal: true RowLayout { Label { text: "Select encryption:" } ComboBox { model: ListModel { ListElement { text: "OMEMO" } ListElement { text: "Unencrypted" } } } } }