(mut self, width: layout::Sizing)
| 83 | /// Sets the width of the element. |
| 84 | #[inline] |
| 85 | pub fn width(mut self, width: layout::Sizing) -> Self { |
| 86 | self.inner.layout.sizing.width = width.into(); |
| 87 | self |
| 88 | } |
| 89 | |
| 90 | /// Sets the height of the element. |
| 91 | #[inline] |
no outgoing calls