FLUTTER ECOSYSTEM

jifalops/mdc_web

material-components-web javascript लाइब्रेरी के लिए Dart वैलेट।

mdc_web प्रोजेक्ट कवर
Stars
18
Forks
6
अंतिम पुश (UTC)
26 जून 2021
प्रोजेक्ट स्थिति
सक्रिय
Jacob Phillips GitHub avatar
GITHUB User

Jacob Phillips ↗

भाषाएँJavaScriptSCSSCSSDartHTML

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 4 आइटम
  • js^0.6.1+1
  • meta^1.1.7
  • testडेवलपमेंट^1.6.5
  • pathडेवलपमेंट^1.6.2

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

pub points

mdc_web

Dart wrapper for the material-components-web javascript library.

Usage

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.

Documentation

Each class and notable members are documented. Class documentation includes links to corresponding (if available):

Limitations

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.