app icon, styling, light mode, top bar component
This commit is contained in:
22
src/components/AppWindowContainer.js
Normal file
22
src/components/AppWindowContainer.js
Normal file
@@ -0,0 +1,22 @@
|
||||
import "./AppWindow.js"
|
||||
|
||||
class AppWindowContainer extends Shadow {
|
||||
render() {
|
||||
ZStack(() => {
|
||||
|
||||
VStack(() => {
|
||||
TopBar()
|
||||
|
||||
AppWindow()
|
||||
})
|
||||
.width(100, pct)
|
||||
.gap(0)
|
||||
})
|
||||
.height(100, pct)
|
||||
.overflowY("hidden")
|
||||
.display("flex")
|
||||
.position("relative")
|
||||
}
|
||||
}
|
||||
|
||||
register(AppWindowContainer)
|
||||
Reference in New Issue
Block a user