(
style: iced::widget::container::Style,
color: Color,
radius: f32,
width: f32,
)
| 368 | } |
| 369 | |
| 370 | fn restyled_border( |
| 371 | style: iced::widget::container::Style, |
| 372 | color: Color, |
| 373 | radius: f32, |
| 374 | width: f32, |
| 375 | ) -> iced::widget::container::Style { |
| 376 | style.border(Border { |
| 377 | width, |
| 378 | radius: radius.into(), |
| 379 | color, |
| 380 | }) |
| 381 | } |
| 382 | |
| 383 | fn grid_style(major: Color, minor: Color, sub_minor: Color) -> GridStyle { |
| 384 | GridStyle { |
no outgoing calls
no test coverage detected