Dart Widgets leverages the Web UI Dart project, sponsored by the Google Dart team.
- Web UI is in heavy development, as is Dart.
- Read up on the WEB UI project before trying to use the code in this project.
- Pay attention to the current version of WEB UI being used by looking at
pubspec.yaml
.
- All components live in
lib/components
- At the moment, all components live in their own inferred library.
- While the convention states libraries should be directly in
lib
, it would get noisy to have every component in thelib
dir. - Tracked by widget.dart bug 4
- Blocked by web-ui bug 291
- Naming
- For a custom component with element name
x-foo-bar
- The class name corresponds to the web-ui library convention:
FooBar
- File names correspond to Dart convention:
foo_bar.[dart|html]
- For a custom component with element name
Our goal is to follow Semantic Versioning.
Note: we have not released v1 (yet).
- Kevin Moore (@kevmoo)
- You? File bugs. Fork and Fix bugs.