Crates.io | yew-bulma |
lib.rs | yew-bulma |
version | 0.0.2 |
source | src |
created_at | 2020-12-31 23:11:14.965641 |
updated_at | 2021-01-31 21:13:06.248375 |
description | Yew components compatible with the Bulma CSS framework |
homepage | |
repository | https://github.com/khonsulabs/yew-bulma |
max_upload_size | |
id | 329901 |
size | 52,499 |
This crate provides simple Yew components that render Bulma-compatible DOM nodes. For example:
html! {
<Button
label="Save"
disabled=!can_save
css_class="is-primary"
action=edit_form.link.callback(|e: web_sys::MouseEvent| {e.prevent_default(); Message::Save})
processing=edit_form.is_saving
/>
}
The goals of this crate are:
This project is very early in development and is really only being added as needed for projects for Khonsu Labs.