mirror of
https://github.com/hulthe/inkopslista.git
synced 2026-08-03 23:11:28 +02:00
Rename crate folders
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user