(label: &str)
| 64 | ) |
| 65 | } |
| 66 | fn label_button(label: &str) -> Element<'_, PlotUiMessage> { |
| 67 | button(text(label).size(12.0)) |
| 68 | .on_press(PlotUiMessage::ToggleLegend) |
| 69 | .into() |
| 70 | } |
| 71 | |
| 72 | fn legend_container<'a>( |
| 73 | content: impl Into<Element<'a, PlotUiMessage>>, |