hamza1311 / material-yew

Yew wrapper for Material Web Components

Home Page:https://material-yew.rm.rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

Example

use material_yew::Button;
use yew::html;

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

Getting started

Installation

Cargo.toml:

[dependencies]
material-yew = "*"

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">

Documentation

Full API documentation can be found here.

Contributing

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

About

Yew wrapper for Material Web Components

https://material-yew.rm.rs

License:Apache License 2.0


Languages

Language:Rust 96.3%Language:JavaScript 2.7%Language:HTML 1.0%