libcosmic-yoda/src/widget/separator.rs
Eduardo Flores 07e53ddadd Reimplemented NavigationBar
- Navigation Bar was reimplemented to support sections and pages.
- Created new widget called separator, a horizontal rule with the COSMIC
  theme.
2022-10-13 11:42:13 +02:00

7 lines
198 B
Rust

#[macro_export]
macro_rules! separator {
($size:expr) => {
$crate::iced::widget::horizontal_rule($size)
.style(theme::Rule::Custom($crate::widget::separator_style))
};
}