30 releases (9 breaking)

0.10.0 Jan 5, 2024
0.9.0 Dec 10, 2023
0.8.1 Nov 29, 2023
0.5.16 Jul 24, 2023
0.3.0 Nov 29, 2021

#738 in GUI

Download history 86/week @ 2024-01-21 87/week @ 2024-01-28 101/week @ 2024-02-04 42/week @ 2024-02-11 37/week @ 2024-02-18 131/week @ 2024-02-25 150/week @ 2024-03-03 134/week @ 2024-03-10 73/week @ 2024-03-17 87/week @ 2024-03-24 84/week @ 2024-03-31 70/week @ 2024-04-07 93/week @ 2024-04-14 163/week @ 2024-04-21 801/week @ 2024-04-28 54/week @ 2024-05-05

1,114 downloads per month

MIT license

355KB
2.5K SLoC

Contains (WOFF font, 165KB) bootstrap-icons.woff, (WOFF font, 125KB) bootstrap-icons.woff2

Usage

This project assumes that you have an existing web application that uses the Yew framework.

Add the dependency next to the regular yew dependency:

[dependencies]
yew = "0.21"
yew-bootstrap = "*"

To use form callback functions, the following dependencies should be added:

[dependencies]
wasm-bindgen = "0.2.*"
web-sys = { version = "0.3.*", features = ["HtmlTextAreaElement", "HtmlSelectElement"] }

Then in the beginning of your application, include the include_cdn() or include_inline() function to load the required CSS. Some components require the Bootstrap JavaScript library to be loaded - for these you can use the include_cdn_js() function. It is recommended that you put this at the bottom of your html!{} macro, as done below:

    fn view(&self, _ctx: &Context<Self>) -> Html {
        html! {
            <>
                {include_cdn()}
                <Button style={Color::Primary}>{"Primary"}</Button>
                {include_cdn_js()}
            </>
        }
    }

Check main.rs for example usage for every implemented component.

Version Convention

This project uses semantic versioning.

Coverage

Core Content

Components

Helpers

Examples

Several examples are provided:

  • examples/basics: Components
  • examples/forms: Form fields

To run an example:

cd examples/<directory>
trunk --serve

Dependencies

~10–14MB
~257K SLoC