- Navigation Bar was reimplemented to support sections and pages. - Created new widget called separator, a horizontal rule with the COSMIC theme.
7 lines
198 B
Rust
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))
|
|
};
|
|
}
|