(&mut self, x: AlignX, y: AlignY)
| 206 | /// Sets the alignment of child elements using separate X and Y values. |
| 207 | #[inline] |
| 208 | pub fn align(&mut self, x: AlignX, y: AlignY) -> &mut Self { |
| 209 | self.config.child_alignment.x = x; |
| 210 | self.config.child_alignment.y = y; |
| 211 | self |
| 212 | } |
| 213 | |
| 214 | /// Sets the layout direction. |
| 215 | #[inline] |
no outgoing calls