import 'package:mdl/mdl.dart';

main() {
    // registerDemoAnimation and import mdldemo.dart is only necessary for animation sample
    registerDemoAnimation();
    registerMdl();
    componentFactory().run().then((_){
    });
}
To use any MDL component, you must include the minified CSS file in the <head> section of the page:
More about theming...
    <div class="demo-preview-block demo-animation demo-js-animation">
      <div class="demo-animation__container">
        <div class="demo-animation__container-background">Click me to animate</div>
        <div class="demo-animation__container-foreground"></div>
        <div class="demo-animation__movable demo-animation--position-0 mdl-shadow--2dp"></div>
      </div>
    </div>

animation

...will be here soon