21 lines
365 B
Plaintext
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
|
|
}
|
|
}
|
|
}
|