diff options
author | 2024-02-19 09:53:45 +0100 | |
---|---|---|
committer | 2024-02-19 09:53:45 +0100 | |
commit | 49b3a714cc718731d3b09e9711bf4ec769a78109 (patch) | |
tree | 550f085c047b4a6d3df46a77c9748342220e0738 /widget | |
parent | e77a6add8ae7dcded0bdecc72f3cdf455f30e79f (diff) | |
parent | 4557014f155a4e5ffb8c1a590aff6c1e7f55ff1f (diff) | |
download | iced-49b3a714cc718731d3b09e9711bf4ec769a78109.tar.gz iced-49b3a714cc718731d3b09e9711bf4ec769a78109.tar.bz2 iced-49b3a714cc718731d3b09e9711bf4ec769a78109.zip |
Merge pull request #2265 from rizzen-yazston/master
Fixed horizontal_space() and vertical_space() helper functions.
Diffstat (limited to 'widget')
-rw-r--r-- | widget/src/helpers.rs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/widget/src/helpers.rs b/widget/src/helpers.rs index 3f2e56cd..71b0579d 100644 --- a/widget/src/helpers.rs +++ b/widget/src/helpers.rs @@ -302,16 +302,18 @@ where ComboBox::new(state, placeholder, selection, on_selected) } -/// Creates a new horizontal [`Space`] with the given [`Length`]. +/// Creates a new [`Space`] widget that fills the available +/// horizontal space. /// -/// [`Space`]: crate::Space +/// This can be useful to separate widgets in a [`Row`]. pub fn horizontal_space() -> Space { Space::with_width(Length::Fill) } -/// Creates a new vertical [`Space`] with the given [`Length`]. +/// Creates a new [`Space`] widget that fills the available +/// vertical space. /// -/// [`Space`]: crate::Space +/// This can be useful to separate widgets in a [`Column`]. pub fn vertical_space() -> Space { Space::with_height(Length::Fill) } |