13 lines
327 B
Text
13 lines
327 B
Text
import { VerticalBox, Palette } from "std-widgets.slint";
|
|
|
|
export component AboutPage inherits VerticalBox {
|
|
Rectangle {
|
|
border-width: 1px;
|
|
border-radius: 4px;
|
|
border-color: Palette.border;
|
|
background: Palette.alternate-background;
|
|
Text {
|
|
text: "ToDo: Add Author Info and Link to Repository";
|
|
}
|
|
}
|
|
} |