Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 7d3ed74

Browse files
authored
Deploy to master #5 (#12)
* [README] Adding links to code and how to import (#1) * [README] Tiny correction and added more links. (#3) * [Contributing] Adding contributing file. (#7) * [Contributing] Adding contributing file. * [Contributing] Adding end new line. * [License] Adding link to license. (#6) * [Templates] Templates for Issue and PR. (#8) * [Templates] Templates for Issue and PR. * Update PULL_REQUEST_TEMPLATE.md * [Docs] Adding AUTHORS and CODE_OF_CONDUCT (#5) * [Docs] Adding AUTHORS and CODE_OF_CONDUCT. * Update AUTHORS * [Docs] Doc site file added (#9) * [Docs] Doc site file added * [Docs] Adding trailing new line. * [Docs] Correcting uppercase. * Deploy to master (#4) (#10) * [README] Adding links to code and how to import (#1) * [README] Tiny correction and added more links. (#3) * [Docs] Adding index. (#11)
1 parent 7df763e commit 7d3ed74

8 files changed

+71
-0
lines changed

.mdc-docsite.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Doc site configuration.
2+
# TODO(shyndman): Link to documentation.
3+
basepath: /flutter
4+
site_platform: flutter
5+
site_title: Material Components for Flutter
6+
site_short_title: Flutter
7+
site_description: >
8+
Material Components for Flutter is a set of user interface components that help Flutter app developers build apps with Material Design.
9+
repo_url: https://github.com/material-components/material-components-flutter/
10+
repo_stable_branch: stable

AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This is the list of Material Components for Flutter authors for copyright
2+
# purposes.
3+
#
4+
# This does not necessarily list everyone who has contributed code, since in
5+
# some cases, their employer may be the copyright holder. To see the full list
6+
# of contributors, see the revision history in source control.
7+
Google LLC

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Please see the [Material Components code of conduct](https://github.com/material-components/material-components/blob/develop/CODE_OF_CONDUCT.md).

CONTRIBUTING

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Please see the [Flutter guide on contributing](https://github.com/flutter/flutter/blob/master/CONTRIBUTING.md).

ISSUE_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
### Are you sure?
2+
This repository is a reference to the [main Flutter repository](https://github.com/flutter/flutter). Code-level issues should be created there.
3+
4+
### Related issues
5+
- Type `#` and the issue number or `#` and select the from the inline drop down.

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Please see the [Flutter license](https://github.com/flutter/flutter/blob/master/CONTRIBUTING.md).

PULL_REQUEST_TEMPLATE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Thanks for starting a pull request on Material Components!
2+
3+
#### Don't forget:
4+
- [ ] Are you sure you mean this repo? This repository is a reference to the [main Flutter repository](https://github.com/flutter/flutter). Code-level issues should be created there.
5+
- [ ] Link to GitHub issues it solves. ```closes #1234```
6+
- [ ] Sign the CLA bot. You can do this once the pull request is opened.
7+
8+
Be sure to read the [Flutter guide on contributing](https://github.com/flutter/flutter/blob/master/CONTRIBUTING.md).
9+
10+
### Related issues
11+
- Type `#` and the issue number or `#` and select the from the inline drop down.

docsite/docsite-index.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: "Material Components for Flutter"
3+
layout: "homepage"
4+
path: /
5+
---
6+
7+
{% contentfor benefits %}
8+
<ul class="benefits-list">
9+
<li class="benefits-list-item">
10+
<h3>Accurate &amp; up to date</h3>
11+
<p>Implement <a href="https://material.io/guidelines">Material Design</a> with pixel-perfect components, maintained by Google engineers and designers</p>
12+
</li>
13+
<li class="benefits-list-item">
14+
<h3>Flexible development</h3>
15+
<p>Develop apps using components that support Android and iOS</p>
16+
</li>
17+
<li class="benefits-list-item">
18+
<h3>Industry standards</h3>
19+
<p>Take advantage of the same designs used in Google’s apps</p>
20+
</li>
21+
</ul>
22+
{% endcontentfor %}
23+
24+
## MDC-Flutter Source Code
25+
26+
All Material Components for Flutter can be found in the [Flutter repository](https://github.com/flutter/flutter/tree/master/packages/flutter/lib/src/material).
27+
28+
## Usage
29+
30+
Material Components is included by default in Flutter's packages. To add access to MDC widgets in a file, simply import the `material.dart` file.
31+
32+
``` dart
33+
import 'package:flutter/material.dart';
34+
```
35+
<!--{: .code-renderer.code-renderer--install }-->

0 commit comments

Comments
 (0)