mirror of
https://github.com/hulthe/inkopslista.git
synced 2026-08-03 23:11:28 +02:00
18 lines
387 B
Plaintext
18 lines
387 B
Plaintext
import { VerticalBox, LineEdit } from "std-widgets.slint";
|
|
import { State } from "state.slint";
|
|
|
|
export component SettingsView inherits VerticalBox {
|
|
alignment: start;
|
|
Text {
|
|
text: "server address:";
|
|
font-size: 25px;
|
|
}
|
|
|
|
LineEdit {
|
|
edited(text) => {
|
|
State.set-server-address(text);
|
|
}
|
|
text: State.server-address;
|
|
}
|
|
}
|