(&mut self, direction: LayoutDirection)
| 214 | /// Sets the layout direction. |
| 215 | #[inline] |
| 216 | pub fn direction(&mut self, direction: LayoutDirection) -> &mut Self { |
| 217 | self.config.layout_direction = direction; |
| 218 | self |
| 219 | } |
| 220 | |
| 221 | /// Enables child wrapping to the cross axis when children exceed available space on the main axis. |
| 222 | #[inline] |
no outgoing calls