3 releases (breaking)

0.3.0 Jan 17, 2023
0.2.0 Jun 19, 2022
0.1.0 May 19, 2021

#8 in #yew-web

Download history 200/week @ 2023-12-18 24/week @ 2023-12-25 84/week @ 2024-01-08 93/week @ 2024-01-15 8/week @ 2024-01-22 14/week @ 2024-01-29 22/week @ 2024-02-12 57/week @ 2024-02-19 69/week @ 2024-02-26 66/week @ 2024-03-04 56/week @ 2024-03-11 27/week @ 2024-03-18 64/week @ 2024-03-25 120/week @ 2024-04-01

284 downloads per month

Apache-2.0

790KB
4.5K SLoC

Rust 4K SLoC // 0.0% comments JavaScript 887 SLoC

Material Yew

Material Yew is a components library for Yew framework which is a wrapper around Material Web Components exposing Yew components. All modern browsers are supported. There is no support for polyfills required by Internet Explorer 11.

Example

use material_yew::MatButton;
use yew::html;

html! {
    <MatButton label="Click me!" />
};

Getting started

Installation

Cargo.toml:

[dependencies]
material-yew = "0.2"

Material icons and a Material font can also be imported for full functionality.
index.html:

<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet">

It's also important to note that you need viewport meta tag for the Material Components to be responsive.

<meta name="viewport" content="width=device-width, initial-scale=1.0">

Feature flags

Following are all the cargo features available (each feature corresponds to its respective component):

  • button
  • circular-progress
  • checkbox
  • circular-progress-four-color
  • drawer
  • top-app-bar
  • icon-button
  • fab
  • formfield
  • linear-progress
  • icon
  • radio
  • switch
  • top-app-bar-fixed
  • dialog
  • list
  • icon-button-toggle
  • slider
  • tabs
  • snackbar
  • textfield
  • textarea
  • select
  • menu

full feature enables all the components

Theming

These components respect the theming applied to Material Web Components using stylesheets. Learn about how to theme Material Web Components.

Documentation

Full API documentation can be found here. Demos of components can be found here.

Contributing

  1. Fork it (https://github.com/hamza1311/material-yew)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

Dependencies

~11–14MB
~258K SLoC