Files
deckui/remote/ui/pages/page.slint
2023-08-05 23:53:58 +02:00

21 lines
365 B
Plaintext

import { AppManager } from "../app-manager.slint";
import { HeaderBar, ScrollView } from "../_imports/coop-widgets.slint";
export component Page inherits GridLayout {
in-out property <string> title <=> i_header_bar.title;
Row {
i_header_bar := HeaderBar {
}
}
Row {
ScrollView {
@children
}
}
}