Skip to content

Commit ef4efcb

Browse files
committed
Initial commit
0 parents  commit ef4efcb

File tree

5 files changed

+86
-0
lines changed

5 files changed

+86
-0
lines changed

.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Intellij
2+
*.iml
3+
.idea/
4+
5+
### Intellij ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
## File-based project format:
10+
*.iws
11+
12+
## Plugin-specific files:
13+
14+
# IntelliJ
15+
/out/
16+
17+
# mpeltonen/sbt-idea plugin
18+
.idea_modules/
19+
20+
# JIRA plugin
21+
atlassian-ide-plugin.xml
22+
23+
24+
### Intellij Patch ###
25+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
26+
27+
# *.iml
28+
# modules.xml
29+
# *.ipr

docs/.nojekyll

Whitespace-only changes.

docs/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Headline
2+
3+
> An awesome project.

docs/faq.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
> **What is this site about?**
2+
3+
We feel there's a huge disconnect between [google material design guidelines](http://www.google.com/design/spec/material-design/introduction.html) and developers docs. After collecting feedback on [Google+](https://plus.google.com/+DmytroDanylyk/posts/MJYpZq666KA) and [Reddit](https://www.reddit.com/r/androiddev/comments/3qm8pk/do_you_think_material_design_spec_is_not_enough/) we decided to make site with a single list of available material components and samples of their usage.
4+
5+
> **What are you planning to cover?**
6+
7+
We want to describe how to use and style material components with google appcompat and design libraries.
8+
9+
Later we will prepare tutorials of how to make widgets which are not available in google material spec / links to open source libraries.
10+
11+
> **What is different between appcompat and design library?**
12+
13+
*v7 appcompat library* - provide support of material design user interface implementations for older Android platforms.
14+
15+
*design library* - provides various material design components which are not part of Android SDK.
16+
17+
> **What version of support and design library are you targeting?**
18+
19+
```groovy
20+
com.android.support:appcompat-v7:23.1.0
21+
com.android.support:design:23.1.0
22+
```
23+
24+
> **Who are the authors?**
25+
26+
Dmytro Danylyk, Yakiv Mospan, Volodymyr Yatsykiv, Saúl Molinero.
27+
28+
> **Who are the reviewers?**
29+
30+
Roman Danylyk, Volodymyr Yatsykiv, Serhii Yaremych
31+
32+
> **Want to make your own localized [www.materialdoc.com](http://www.materialdoc.com/) site**?
33+
34+
Here are the [steps](http://www.materialdoc.com/join-us).

docs/index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Document</title>
6+
<meta name="description" content="Description">
7+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
8+
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
9+
</head>
10+
<body>
11+
<div id="app"></div>
12+
</body>
13+
<script>
14+
window.$docsify = {
15+
name: '',
16+
repo: ''
17+
}
18+
</script>
19+
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
20+
</html>

0 commit comments

Comments
 (0)