Sets the width (thickness) of the focus ring in pixels. Default is `2`.
(&mut self, width: u16)
| 241 | |
| 242 | /// Sets the width (thickness) of the focus ring in pixels. Default is `2`. |
| 243 | pub fn ring_width(&mut self, width: u16) -> &mut Self { |
| 244 | self.config.ring_width = Some(width); |
| 245 | self |
| 246 | } |
| 247 | |
| 248 | /// Sets the live region to polite — screen reader announces changes on next idle. |
| 249 | pub fn live_region_polite(&mut self) -> &mut Self { |
no outgoing calls