forked from jondot/awesome-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
136 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
site/ | ||
docs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
www.awesome-react-native.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
install: | ||
@bundle install | ||
@gem install jill | ||
@pip install -r requirements.txt | ||
|
||
docs: | ||
@rm -rf docs | ||
@mkdir docs | ||
@cp *.md docs/ | ||
@cp README.md docs/index.md | ||
@cp extra.css docs/ | ||
@cp icon.svg docs/ | ||
@cp CNAME docs/ | ||
|
||
publish: docs | ||
@mkdocs gh-deploy --clean | ||
@rm -rf docs | ||
|
||
serve: docs | ||
@mkdocs serve | ||
|
||
check: | ||
@bundle exec ruby dedup.rb && bundle exec ruby validate.rb | ||
|
||
stars: | ||
@sh starify.sh | ||
|
||
.PHONY: docs publish serve check stars install | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,38 @@ | |
|
||
<img src="https://travis-ci.org/jondot/awesome-react-native.svg?branch=master" alt="Build Status" /> | ||
|
||
A curated list of awesome articles, tutorials and resources dealing | ||
with React Native. | ||
|
||
Inspired by [awesome-go](https://github.com/avelino/awesome-go), which was in turn inspired by [awesome-python](https://github.com/vinta/awesome-python). | ||
|
||
Many thanks to everyone on the [contributor list](https://github.com/jondot/awesome-react-native/graphs/contributors) :) | ||
|
||
# Content | ||
## Buzzing | ||
|
||
<div style="text-align: center"><table><tr> | ||
<td style="text-align: center"> | ||
<a href="https://www.youtube.com/watch?v=UPrKMGPDbtY"> | ||
<img src="https://img.youtube.com/vi/UPrKMGPDbtY/0.jpg" width="120"/> | ||
<br/> | ||
Joel on Performance | ||
</a> | ||
</td> | ||
<td style="text-align: center"> | ||
<a href="https://www.youtube.com/watch?v=9baaVjGdBqs"> | ||
<img src="https://img.youtube.com/vi/9baaVjGdBqs/0.jpg" width="120"/> | ||
<br/> | ||
Create React Native App | ||
</a> | ||
</td> | ||
<td style="text-align: center"> | ||
<a href="https://facebook.github.io/react-native/blog/2017/03/13/better-list-views.html"> | ||
<img src="icon.svg" width="120" height="90" style=" | ||
background: #d0d0d0; | ||
padding: 10px; | ||
"> | ||
<br/> | ||
Better List Views | ||
</a> | ||
</td> | ||
</tr></table></div> | ||
|
||
Have something that belongs here? [drop me a line!](mailto:[email protected]) | ||
|
||
## Sections | ||
|
||
- [Conferences](#conferences) | ||
- [Articles](#articles) | ||
|
@@ -27,6 +51,8 @@ Many thanks to everyone on the [contributor list](https://github.com/jondot/awes | |
- [Blogs](#blogs) | ||
- [Releases](#releases) | ||
|
||
Many thanks to everyone on the [contributor list](https://github.com/jondot/awesome-react-native/graphs/contributors) :) | ||
|
||
## Conferences | ||
|
||
Conferences dedicated to React Native specifically. A listing of React general conferences can be found on the [ReactJS site](https://facebook.github.io/react/docs/conferences.html). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.md-header[data-md-state=shadow]{ | ||
box-shadow:none; | ||
} | ||
.md-typeset table:not([class]){ | ||
box-shadow: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
site_name: "Awesome React Native" | ||
site_url: "http://awesome-react-native.com" | ||
site_description: "A curated list of awesome articles, tutorials and resources dealing | ||
with React Native." | ||
site_author: "Dotan Nahum" | ||
repo_url: "https://github.com/jondot/awesome-react-native" | ||
google_analytics: ['UA-7131053-20', 'auto'] | ||
theme: material | ||
pages: | ||
- "Awesome React Native": "index.md" | ||
- "Contributing": "CONTRIBUTING.md" | ||
extra: | ||
palette: | ||
primary: 'light blue' | ||
accent: 'light blue' | ||
logo: 'icon.svg' | ||
|
||
markdown_extensions: | ||
- toc: | ||
permalink: true | ||
- markdown.extensions.admonition | ||
- markdown.extensions.def_list | ||
- markdown.extensions.footnotes | ||
- markdown.extensions.meta | ||
- markdown.extensions.toc(permalink=true) | ||
- pymdownx.arithmatex | ||
- pymdownx.betterem(smart_enable=all) | ||
- pymdownx.caret | ||
- pymdownx.critic | ||
- pymdownx.inlinehilite | ||
- pymdownx.magiclink | ||
- pymdownx.mark | ||
- pymdownx.smartsymbols | ||
- pymdownx.superfences | ||
- pymdownx.tasklist(custom_checkbox=true) | ||
- pymdownx.tilde |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
mkdocs>=0.16 | ||
pymdown-extensions>=1.2 |