1. Finished GUI

2. Implemented Geolocation API
This commit is contained in:
brotoskyj
2025-01-28 14:51:14 -05:00
parent a703ec3149
commit 18ab70c299
11 changed files with 1412 additions and 16 deletions
+67
View File
@@ -0,0 +1,67 @@
Rectangle {
x: 7px;
y: 11px;
border-color: #00FFFF;
border-width: 1px;
border-radius: 10px;
height: 360px;
width: 150px;
}
Text {
x: 15px;
y: 15px;
text: "Search User";
}
ComboBox {
x: 15px;
y: 58px;
width: 135px;
model: ["Username", "Last Name"];
}
LineEdit {
width: 135px;
x: 15px;
y: 104px;
}
Button {
width: 135px;
x: 15px;
y: 288px;
text: "Seach";
}
Rectangle {
x: 167px;
y: 11px;
border-color: #00FFFF;
border-width: 1px;
border-radius: 10px;
height: 560px;
width: 350px;
}
Text {
x: 175px;
y: 15px;
text: "Account Information";
}
Rectangle {
x: 527px;
y: 11px;
border-color: #00FFFF;
border-width: 1px;
border-radius: 10px;
height: 560px;
width: 350px;
}
Text {
x: 535px;
y: 15px;
text: "Group Information";
}