Marks this element as focusable (adds to tab order).
(&mut self)
| 93 | |
| 94 | /// Marks this element as focusable (adds to tab order). |
| 95 | pub fn focusable(&mut self) -> &mut Self { |
| 96 | self.config.focusable = true; |
| 97 | self |
| 98 | } |
| 99 | |
| 100 | /// Sets role = Button and label in one call. |
| 101 | pub fn button(&mut self, label: &str) -> &mut Self { |
no outgoing calls