pub struct PaddingValues {
pub start: f32,
pub top: f32,
pub end: f32,
pub bottom: f32,
}Expand description
Insets supplied to a scaffold’s content slot, in reading order.
start and end are the reading-order edges: in a left-to-right layout
start is the left edge, in a right-to-left layout it is the right one.
Fields§
§start: f32§top: f32§end: f32§bottom: f32Implementations§
Source§impl PaddingValues
impl PaddingValues
pub const fn new(start: f32, top: f32, end: f32, bottom: f32) -> Self
Sourcepub fn apply_to(self, modifier: Modifier) -> Modifier
pub fn apply_to(self, modifier: Modifier) -> Modifier
Applies these values in the composition’s current reading order.
Sourcepub fn apply_to_in(
self,
modifier: Modifier,
direction: LayoutDirection,
) -> Modifier
pub fn apply_to_in( self, modifier: Modifier, direction: LayoutDirection, ) -> Modifier
Applies these values against an explicit reading order.
Sourcepub fn physical(self, direction: LayoutDirection) -> EdgeInsets
pub fn physical(self, direction: LayoutDirection) -> EdgeInsets
The physical left/top/right/bottom edges in direction.
Trait Implementations§
Source§impl Clone for PaddingValues
impl Clone for PaddingValues
Source§fn clone(&self) -> PaddingValues
fn clone(&self) -> PaddingValues
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PaddingValues
Source§impl Debug for PaddingValues
impl Debug for PaddingValues
Source§impl Default for PaddingValues
impl Default for PaddingValues
Source§fn default() -> PaddingValues
fn default() -> PaddingValues
Returns the “default value” for a type. Read more
Source§impl PartialEq for PaddingValues
impl PartialEq for PaddingValues
impl StructuralPartialEq for PaddingValues
Auto Trait Implementations§
impl Freeze for PaddingValues
impl RefUnwindSafe for PaddingValues
impl Send for PaddingValues
impl Sync for PaddingValues
impl Unpin for PaddingValues
impl UnsafeUnpin for PaddingValues
impl UnwindSafe for PaddingValues
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more