├── .nojekyll ├── .node-version ├── CNAME ├── .gitignore ├── _source ├── ios │ ├── ios.json │ ├── 01_getting_started.md │ ├── 02_path_configuration.md │ ├── 05_configuration.md │ ├── 04_native_screens.md │ ├── 06_reference.md │ └── 03_bridge_components.md ├── _assets │ ├── fonts │ │ ├── Jost-Italic.woff2 │ │ ├── Jost-Roman.woff2 │ │ ├── Bitter-Italic.woff2 │ │ ├── Bitter-Roman.woff2 │ │ ├── RobotoMono-Roman.woff2 │ │ └── RobotoMono-Italic.woff2 │ ├── images │ │ ├── bridge-examples.png │ │ ├── favicon-196x196.png │ │ ├── favicon-32x32.png │ │ ├── native-vs-web.jpg │ │ ├── basic-navigation.png │ │ ├── bridge-ios-button.png │ │ ├── native-vs-web-ios.jpg │ │ ├── new-xcode-project.png │ │ ├── xcode-add-package.png │ │ ├── xcode-search-package.png │ │ ├── bridge-android-button.png │ │ ├── xcode-choose-template.png │ │ ├── xcode-project-location.png │ │ ├── xcode-project-options.png │ │ ├── android-hotwire-native-demo.png │ │ ├── iphone-hotwire-native-demo.png │ │ ├── new-android-studio-project.png │ │ ├── android-studio-project-options.png │ │ ├── icon-guide.svg │ │ ├── icon-install.svg │ │ ├── icon-github.svg │ │ ├── icon-android.svg │ │ ├── icon-apple.svg │ │ ├── favicon.svg │ │ ├── logo.svg │ │ ├── logo-hey.svg │ │ ├── logo-basecamp.svg │ │ ├── logo-once.svg │ │ └── waves-pattern-4.svg │ ├── js │ │ └── main.js │ └── css │ │ ├── main.scss │ │ ├── components │ │ ├── _anchor.scss │ │ ├── _callout.scss │ │ ├── _page.scss │ │ ├── _foot.scss │ │ ├── _button.scss │ │ ├── _highlighter.scss │ │ ├── _jump.scss │ │ ├── _grid.scss │ │ ├── _docs.scss │ │ ├── _landing.scss │ │ └── _nav.scss │ │ └── base │ │ ├── _fonts.scss │ │ ├── _mixins.scss │ │ ├── _utilities.scss │ │ └── _elements.scss ├── android │ ├── android.json │ ├── 06_reference.md │ ├── 05_configuration.md │ ├── 02_path_configuration.md │ ├── 04_native_screens.md │ ├── 01_getting_started.md │ └── 03_bridge_components.md ├── reference │ ├── reference.json │ ├── bridge_installation.md │ ├── bridge_components.md │ ├── path_configuration.md │ └── navigation.md ├── community │ ├── community.json │ └── discussions.md ├── overview │ ├── overview.json │ ├── 05_native_screens.md │ ├── 01_how_it_works.md │ ├── 03_path_configuration.md │ ├── 02_basic_navigation.md │ └── 04_bridge_components.md ├── _layouts │ ├── base.html │ ├── default.html │ └── docs.html ├── _filters │ ├── sortBy.js │ ├── navPrefix.js │ ├── titleFromHeading.js │ ├── where.js │ └── fullDate.js ├── _data │ ├── ios_release.js │ ├── android_release.js │ └── site.json ├── _includes │ ├── jump.html │ ├── section-nav.html │ ├── footer.html │ ├── github-corner.html │ ├── navigation.html │ ├── head.html │ └── svg │ │ └── hotwire-native-logo.svg └── index.html ├── README.md ├── .github └── workflows │ └── eleventy_publish.yml ├── package.json └── .eleventy.js /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16.15.0 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | native.hotwired.dev 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .netlify 3 | .jekyll-metadata 4 | .sass-cache 5 | _public 6 | _site 7 | node_modules 8 | tmp 9 | -------------------------------------------------------------------------------- /_source/ios/ios.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [ 3 | "ios" 4 | ], 5 | "layout": "docs.html", 6 | "section_title": "iOS" 7 | } 8 | -------------------------------------------------------------------------------- /_source/_assets/fonts/Jost-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/fonts/Jost-Italic.woff2 -------------------------------------------------------------------------------- /_source/_assets/fonts/Jost-Roman.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/fonts/Jost-Roman.woff2 -------------------------------------------------------------------------------- /_source/_assets/fonts/Bitter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/fonts/Bitter-Italic.woff2 -------------------------------------------------------------------------------- /_source/_assets/fonts/Bitter-Roman.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/fonts/Bitter-Roman.woff2 -------------------------------------------------------------------------------- /_source/_assets/images/bridge-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/bridge-examples.png -------------------------------------------------------------------------------- /_source/_assets/images/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/favicon-196x196.png -------------------------------------------------------------------------------- /_source/_assets/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/favicon-32x32.png -------------------------------------------------------------------------------- /_source/_assets/images/native-vs-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/native-vs-web.jpg -------------------------------------------------------------------------------- /_source/android/android.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [ 3 | "android" 4 | ], 5 | "layout": "docs.html", 6 | "section_title": "Android" 7 | } 8 | -------------------------------------------------------------------------------- /_source/reference/reference.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [ 3 | "reference" 4 | ], 5 | "layout": "docs.html", 6 | "section_title": "Reference" 7 | } -------------------------------------------------------------------------------- /_source/_assets/fonts/RobotoMono-Roman.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/fonts/RobotoMono-Roman.woff2 -------------------------------------------------------------------------------- /_source/_assets/images/basic-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/basic-navigation.png -------------------------------------------------------------------------------- /_source/_assets/images/bridge-ios-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/bridge-ios-button.png -------------------------------------------------------------------------------- /_source/_assets/images/native-vs-web-ios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/native-vs-web-ios.jpg -------------------------------------------------------------------------------- /_source/_assets/images/new-xcode-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/new-xcode-project.png -------------------------------------------------------------------------------- /_source/_assets/images/xcode-add-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/xcode-add-package.png -------------------------------------------------------------------------------- /_source/community/community.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [ 3 | "community" 4 | ], 5 | "layout": "docs.html", 6 | "section_title": "Community" 7 | } 8 | -------------------------------------------------------------------------------- /_source/overview/overview.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [ 3 | "overview" 4 | ], 5 | "layout": "docs.html", 6 | "section_title": "Overview" 7 | } 8 | -------------------------------------------------------------------------------- /_source/_assets/fonts/RobotoMono-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/fonts/RobotoMono-Italic.woff2 -------------------------------------------------------------------------------- /_source/_assets/images/xcode-search-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/xcode-search-package.png -------------------------------------------------------------------------------- /_source/_assets/images/bridge-android-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/bridge-android-button.png -------------------------------------------------------------------------------- /_source/_assets/images/xcode-choose-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/xcode-choose-template.png -------------------------------------------------------------------------------- /_source/_assets/images/xcode-project-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/xcode-project-location.png -------------------------------------------------------------------------------- /_source/_assets/images/xcode-project-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/xcode-project-options.png -------------------------------------------------------------------------------- /_source/_assets/images/android-hotwire-native-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/android-hotwire-native-demo.png -------------------------------------------------------------------------------- /_source/_assets/images/iphone-hotwire-native-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/iphone-hotwire-native-demo.png -------------------------------------------------------------------------------- /_source/_assets/images/new-android-studio-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/new-android-studio-project.png -------------------------------------------------------------------------------- /_source/_assets/images/android-studio-project-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwired/hotwire-native-site/HEAD/_source/_assets/images/android-studio-project-options.png -------------------------------------------------------------------------------- /_source/_assets/js/main.js: -------------------------------------------------------------------------------- 1 | import "@hotwired/turbo" 2 | 3 | // Are we in an