Material Design Lite for Gwt

A Java wrapper enabling MDL look and feel in GWT

License

License

Categories

Categories

GWT (Google Web Toolkit) User Interface Web Frameworks
GroupId

GroupId

com.github.ilyes4j
ArtifactId

ArtifactId

material-design-lite-gwt
Last Version

Last Version

0.1.0
Release Date

Release Date

Type

Type

pom
Description

Description

Material Design Lite for Gwt
A Java wrapper enabling MDL look and feel in GWT
Project URL

Project URL

http://ilyes4j.github.io/material-design-lite-gwt
Project Organization

Project Organization

com.github.ilyes4j
Source Code Management

Source Code Management

https://github.com/ilyes4j/material-design-lite-gwt

Download material-design-lite-gwt

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.ilyes4j/material-design-lite-gwt/ -->
<dependency>
    <groupId>com.github.ilyes4j</groupId>
    <artifactId>material-design-lite-gwt</artifactId>
    <version>0.1.0</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.ilyes4j/material-design-lite-gwt/
implementation 'com.github.ilyes4j:material-design-lite-gwt:0.1.0'
// https://jarcasting.com/artifacts/com.github.ilyes4j/material-design-lite-gwt/
implementation ("com.github.ilyes4j:material-design-lite-gwt:0.1.0")
'com.github.ilyes4j:material-design-lite-gwt:pom:0.1.0'
<dependency org="com.github.ilyes4j" name="material-design-lite-gwt" rev="0.1.0">
  <artifact name="material-design-lite-gwt" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.github.ilyes4j', module='material-design-lite-gwt', version='0.1.0')
)
libraryDependencies += "com.github.ilyes4j" % "material-design-lite-gwt" % "0.1.0"
[com.github.ilyes4j/material-design-lite-gwt "0.1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • material-design-lite-gwt-lib
  • material-design-lite-gwt-demo

material-design-lite-gwt

Build Status Maven Central License Issues

mdl-gwt is a Java wrapper enabling material design lite look and feel in GWT projects.

Showcases

1. Last build

You can take a peek at the upcoming release being cooked over here.

2. Releases

Getting started

1. Setup a GWT project

It is assumed that you already setup a GWT project. If not, this tutorial might be of help.

2. Setup the host page

Include material design lite in your host page.

<head>
  <link rel="stylesheet" href="https://code.getmdl.io/1.1.1/material.blue_grey-red.min.css">

  <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">

  <script src="https://storage.googleapis.com/code.getmdl.io/1.1.1/material.min.js"></script>
</head>

3. Include the dependency in your pom.xml

Include the mdl-gwt library as a dependency in your Maven project.

<dependency>
  <groupId>com.github.ilyes4j</groupId>
  <artifactId>material-design-lite-gwt-lib</artifactId>
  <version>0.1.0</version>
  <scope>provided</scope>
</dependency>

4. Import the library in your GWT module

Finally, make sure to inherit the library GWT module in the GWT module of the project.

<module>
  <inherits name="com.github.ilyes4j.gwt.mdl.Mdl" />
</module>

License

Mohamed ilyes Dimassi, 2016. Licensed under the Apache-2 license.

Versions

Version
0.1.0