(
style: iced::widget::container::Style,
background: Color,
border_color: Color,
radius: f32,
width: f32,
)
| 357 | } |
| 358 | |
| 359 | fn styled_panel( |
| 360 | style: iced::widget::container::Style, |
| 361 | background: Color, |
| 362 | border_color: Color, |
| 363 | radius: f32, |
| 364 | width: f32, |
| 365 | ) -> iced::widget::container::Style { |
| 366 | let style = style.background(background); |
| 367 | restyled_border(style, border_color, radius, width) |
| 368 | } |
| 369 | |
| 370 | fn restyled_border( |
| 371 | style: iced::widget::container::Style, |
no test coverage detected