mdc_web
material-components-web 자바스크립트 라이브러리용 Dart 래퍼입니다.
material-components-web 자바스크립트 라이브러리용 Dart 래퍼입니다.
아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
Dart wrapper for the material-components-web javascript library.
In your index.html, include the script just before the main.dart.js script.
<!--
This exposes the `mdc` global variable required by this package.
For debugging purposes you can replace the ".min.js" extension with ".js".
-->
<script defer src="packages/mdc_web/material-components-web.min.js"></script>
<script defer src="main.dart.js"></script>
Now in your dart application you can use all of the MDC* classes as described by the Material Design Web component reference.
Each class and notable members are documented. Class documentation includes links to corresponding (if available):
Only the components themselves were mirrored. Their foundation and adapter classes are currently beyond the scope of this package as they are for deep customization within other web frameworks. However, the base MDCFoundation and MDCComponent classes are included. This limitation should not affect most implementations, but if it does affect you, please let me know.