slint-ui/slint
The ListView's viewport-width is not working and no horizontal bar
Chiusa
#5485 aperta il 26 giu 2024
a:models&viewsgood first issue
Metriche repository
- Star
- (22.596 stelle)
- Metriche merge PR
- (Merge medio 4g 18h) (254 PR mergiate in 30 g)
Descrizione
like this:
import { ListView } from "std-widgets.slint";
export component Demo {
ListView {
viewport-width: 10000px;
private property <[string]> names: [
"111111111111111111111111111111111",
"222222222222222222222222222222222222",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333444444444444444444444",
"3333333333333333333333333333333333333344444444444444444444444444444444444",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333",
"33333333333333333333333333333333333333111111111111111111",
];
for name[idx] in names: Rectangle {
Text {
text: name;
}
}
}
}