From 986eac179efe986aad7c8f41acf2c35c88857f77 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Tue, 12 Aug 2025 10:43:46 -0400 Subject: [PATCH] added NTextInput into DemoPanel - minor display issues with scaling in there --- Modules/DemoPanel/DemoPanel.qml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/Modules/DemoPanel/DemoPanel.qml b/Modules/DemoPanel/DemoPanel.qml index af1dbc1..66b55fc 100644 --- a/Modules/DemoPanel/DemoPanel.qml +++ b/Modules/DemoPanel/DemoPanel.qml @@ -159,6 +159,28 @@ NLoader { } } + // NTextInput + ColumnLayout { + spacing: Style.marginMedium * scaling + NText { + text: "NTextInput" + color: Colors.accentSecondary + font.weight: Style.fontWeightBold + } + + NTextInput { + text: "Type anything" + Layout.fillWidth: true + onEditingFinished: function () { + } + + NDivider { + Layout.fillWidth: true + } + } + + } + // NBusyIndicator ColumnLayout { spacing: Style.marginMedium * scaling