1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
type ProgressBar = { value: &f64, min: &f64, max: &f64, width: &Length, height: &[f64, null] }; val progress_bar: fn( ?#min: &f64, ?#max: &f64, ?#width: &Length, ?#height: &[f64, null], value: &f64 ) -> Widget