11 releases
0.1.13 | Mar 12, 2025 |
---|---|
0.1.12 | Feb 6, 2025 |
0.1.11 | Jan 18, 2025 |
0.1.10 | Dec 16, 2024 |
0.1.4 | Oct 10, 2024 |
#584 in Data structures
150 downloads per month
98KB
2K
SLoC
Freyr UI web Components Library for Dioxus.
Why the name Freyr?
Freyr is the norse god of fertility and prosperity and is known for his beauty. Your Dioxus app should also look good, even beautiful.
First:
cargo add freyr
This crate provides a set of customizable UI components for use in Dioxus projects. It allows developers to easily integrate and style components such as navbars and buttons, with flexible configuration options for color schemes, layouts, and responsiveness.
Warning:
This component is in the early stage of development. Components may change. Be aware of that.
Features
- Buttons
- Tabs
- Navbar
- Carousel
- Accordion
- Dropdown
- Dialog
All those components have more features than you think. For more information about them please chack them here.
Example of the use of the navbar with a dropdown menu that uses dioxus-i18n (using the version 0.6.3 of Dioxus):
use dioxus::prelude::*;
use freyr::prelude::*;
#[component]
pub fn Navigation() -> Element {
let mut i18n = i18n();
let change_to_english = move |_| i18n.set_language(langid!("en-US"));
let change_to_french = move |_| i18n.set_language(langid!("fr-FR"));
let dropdown_items = vec!["English".to_string(), "Français".to_string()];
let onclick_handlers: Vec<EventHandler<MouseEvent>> = vec![
EventHandler::new(change_to_english),
EventHandler::new(change_to_french),
];
let config_dropdown = DropdownButtonConfig {
title: t!("languages"),
labels: dropdown_items,
onclick: onclick_handlers,
background_color: DropdownColorScheme::Dark,
title_color: DropdownTitleColor::Light,
labels_color: DropdownLabelsColor::Light,
hover_color: DropdownHoverColor::Custom("#03346E"),
};
let navbar_config = NavbarConfig {
background_color: ColorScheme::Freyr,
nav_header: String::from("Freyr"),
nav_items: vec![
"Home".to_string(),
t!("about"),
"Contact".to_string(),
],
nav_links: vec![
"/".to_string(),
"/about".to_string(),
"/contact".to_string(),
],
nav_item_color: NavItemsColor::Light,
icon_color: IconColor::White,
};
rsx! {
NavbarDropdownButtons { navbar_config, config_dropdown }
Outlet::<Route> {}
}
}
For more information and documentation about freyr, please go to docs.rs. There you may have a look at the different options that each component may provide you.
Dependencies
~17–61MB
~1M SLoC