pub trait FixedExt: 'static { fn move_(&self, widget: &impl IsA<Widget>, x: i32, y: i32); fn put(&self, widget: &impl IsA<Widget>, x: i32, y: i32); }
Trait containing all Fixed methods.
Fixed
Adds a widget to a Fixed container at the given position.
widget
the widget to add.
x
the horizontal position to place the widget at.
y
the vertical position to place the widget at.