commit
26de688e68
10 changed files with 202 additions and 3 deletions
|
|
@ -28,6 +28,7 @@ mod container;
|
|||
mod image;
|
||||
mod radio;
|
||||
mod row;
|
||||
mod space;
|
||||
mod text;
|
||||
|
||||
#[doc(no_inline)]
|
||||
|
|
@ -47,6 +48,7 @@ pub use container::Container;
|
|||
pub use image::Image;
|
||||
pub use radio::Radio;
|
||||
pub use row::Row;
|
||||
pub use space::Space;
|
||||
|
||||
/// A component that displays information and allows interaction.
|
||||
///
|
||||
|
|
|
|||
69
web/src/widget/space.rs
Normal file
69
web/src/widget/space.rs
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
use crate::{style, Bus, Element, Length, Widget};
|
||||
use dodrio::bumpalo;
|
||||
|
||||
/// An amount of empty space.
|
||||
///
|
||||
/// It can be useful if you want to fill some space with nothing.
|
||||
#[derive(Debug)]
|
||||
pub struct Space {
|
||||
width: Length,
|
||||
height: Length,
|
||||
}
|
||||
|
||||
impl Space {
|
||||
/// Creates an amount of empty [`Space`] with the given width and height.
|
||||
///
|
||||
/// [`Space`]: struct.Space.html
|
||||
pub fn new(width: Length, height: Length) -> Self {
|
||||
Space { width, height }
|
||||
}
|
||||
|
||||
/// Creates an amount of horizontal [`Space`].
|
||||
///
|
||||
/// [`Space`]: struct.Space.html
|
||||
pub fn with_width(width: Length) -> Self {
|
||||
Space {
|
||||
width,
|
||||
height: Length::Shrink,
|
||||
}
|
||||
}
|
||||
|
||||
/// Creates an amount of vertical [`Space`].
|
||||
///
|
||||
/// [`Space`]: struct.Space.html
|
||||
pub fn with_height(height: Length) -> Self {
|
||||
Space {
|
||||
width: Length::Shrink,
|
||||
height,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, Message> Widget<Message> for Space {
|
||||
fn node<'b>(
|
||||
&self,
|
||||
bump: &'b bumpalo::Bump,
|
||||
_publish: &Bus<Message>,
|
||||
_style_sheet: &mut style::Sheet<'b>,
|
||||
) -> dodrio::Node<'b> {
|
||||
use dodrio::builder::*;
|
||||
|
||||
let width = style::length(self.width);
|
||||
let height = style::length(self.height);
|
||||
|
||||
let style = bumpalo::format!(
|
||||
in bump,
|
||||
"width: {}; height: {};",
|
||||
width,
|
||||
height
|
||||
);
|
||||
|
||||
div(bump).attr("style", style.into_bump_str()).finish()
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, Message> From<Space> for Element<'a, Message> {
|
||||
fn from(space: Space) -> Element<'a, Message> {
|
||||
Element::new(space)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue