├── .gitignore ├── README.md ├── SUMMARY.md ├── accessing-native-apis.md ├── accessing_native_apis.md ├── application_management.md ├── architecture_and_navigation.md ├── assets ├── 1.4.1.png ├── 1.4.2.png ├── 1.png ├── 2.2-1.png ├── 2.2-2.png ├── 2.3.1.png ├── 2.3.2.png ├── 2.4.1.png ├── 2.4.2.png ├── 2.5.1.png ├── 2.5.2.png ├── 2.png ├── 3.1.1.png ├── 3.1.2.png ├── 3.1.png ├── 3.2.1.gif ├── 3.2.2.gif ├── 3.3.png ├── 3.png ├── 341.png ├── 342.png ├── 4.png ├── 421.png ├── 422.png ├── 441.png ├── 442.png ├── 443.png ├── 444.png ├── 451.gif ├── 452.gif ├── 461.gif ├── 462.gif ├── 471.gif ├── 472.gif ├── 5.png ├── 511.png ├── 512.png ├── 521.gif ├── 522.gif ├── 6.1.png ├── 6.png ├── 621.png ├── 622.gif └── 631.gif ├── book.json ├── chapter-1—-app跑起来.md ├── chapter-2—ui-创建用户界面.md ├── chapter-3—应用逻辑.md ├── chapter-4—nativescript-模块.md ├── chapter-5—plugins-and-npm-modules.md ├── chapter-5—插件和npm.md ├── chapter.md ├── chapter0.md ├── chapter1.md ├── chapter2.md ├── chapter3.md ├── chapter4.md ├── chapter5.md ├── chapter6.md ├── chapter—6-new.md ├── core_concepts.md ├── data_binding.md ├── event.md ├── hownativescriptworks.md ├── img ├── 1.4.1.png ├── 1.4.2.png ├── 1.png ├── 2.2-1.png ├── 2.2-2.png ├── 2.3.1.png ├── 2.3.2.png ├── 2.4.1.png ├── 2.4.2.png ├── 2.5.1.png ├── 2.5.2.png ├── 2.png ├── 3.1.1.png ├── 3.1.2.png ├── 3.1.png ├── 3.2.1.gif ├── 3.2.2.gif ├── 3.3.png ├── 3.png ├── 341.png ├── 342.png ├── 4.png ├── 421.png ├── 422.png ├── 441.png ├── 442.png ├── 443.png ├── 444.png ├── 451.gif ├── 452.gif ├── 461.gif ├── 462.gif ├── 471.gif ├── 472.gif ├── 5.png └── 6.png ├── modules.md ├── multithreadingmodel.md ├── properties.md ├── 应用生命周期.md ├── 数据绑定.md ├── 新手引导.md ├── 核心概念.md └── 结构和导航.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /accessing-native-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/accessing-native-apis.md -------------------------------------------------------------------------------- /accessing_native_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/accessing_native_apis.md -------------------------------------------------------------------------------- /application_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/application_management.md -------------------------------------------------------------------------------- /architecture_and_navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/architecture_and_navigation.md -------------------------------------------------------------------------------- /assets/1.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/1.4.1.png -------------------------------------------------------------------------------- /assets/1.4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/1.4.2.png -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/1.png -------------------------------------------------------------------------------- /assets/2.2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/2.2-1.png -------------------------------------------------------------------------------- /assets/2.2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/2.2-2.png -------------------------------------------------------------------------------- /assets/2.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/2.3.1.png -------------------------------------------------------------------------------- /assets/2.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/2.3.2.png -------------------------------------------------------------------------------- /assets/2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/2.4.1.png -------------------------------------------------------------------------------- /assets/2.4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/2.4.2.png -------------------------------------------------------------------------------- /assets/2.5.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/2.5.1.png -------------------------------------------------------------------------------- /assets/2.5.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/2.5.2.png -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/3.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/3.1.1.png -------------------------------------------------------------------------------- /assets/3.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/3.1.2.png -------------------------------------------------------------------------------- /assets/3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/3.1.png -------------------------------------------------------------------------------- /assets/3.2.1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/3.2.1.gif -------------------------------------------------------------------------------- /assets/3.2.2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/3.2.2.gif -------------------------------------------------------------------------------- /assets/3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/3.3.png -------------------------------------------------------------------------------- /assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/3.png -------------------------------------------------------------------------------- /assets/341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/341.png -------------------------------------------------------------------------------- /assets/342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/342.png -------------------------------------------------------------------------------- /assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/4.png -------------------------------------------------------------------------------- /assets/421.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/421.png -------------------------------------------------------------------------------- /assets/422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/422.png -------------------------------------------------------------------------------- /assets/441.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/441.png -------------------------------------------------------------------------------- /assets/442.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/442.png -------------------------------------------------------------------------------- /assets/443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/443.png -------------------------------------------------------------------------------- /assets/444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/444.png -------------------------------------------------------------------------------- /assets/451.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/451.gif -------------------------------------------------------------------------------- /assets/452.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/452.gif -------------------------------------------------------------------------------- /assets/461.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/461.gif -------------------------------------------------------------------------------- /assets/462.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/462.gif -------------------------------------------------------------------------------- /assets/471.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/471.gif -------------------------------------------------------------------------------- /assets/472.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/472.gif -------------------------------------------------------------------------------- /assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/5.png -------------------------------------------------------------------------------- /assets/511.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/511.png -------------------------------------------------------------------------------- /assets/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/512.png -------------------------------------------------------------------------------- /assets/521.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/521.gif -------------------------------------------------------------------------------- /assets/522.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/522.gif -------------------------------------------------------------------------------- /assets/6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/6.1.png -------------------------------------------------------------------------------- /assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/6.png -------------------------------------------------------------------------------- /assets/621.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/621.png -------------------------------------------------------------------------------- /assets/622.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/622.gif -------------------------------------------------------------------------------- /assets/631.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/assets/631.gif -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/book.json -------------------------------------------------------------------------------- /chapter-1—-app跑起来.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter-1—-app跑起来.md -------------------------------------------------------------------------------- /chapter-2—ui-创建用户界面.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter-2—ui-创建用户界面.md -------------------------------------------------------------------------------- /chapter-3—应用逻辑.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter-3—应用逻辑.md -------------------------------------------------------------------------------- /chapter-4—nativescript-模块.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter-4—nativescript-模块.md -------------------------------------------------------------------------------- /chapter-5—plugins-and-npm-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter-5—plugins-and-npm-modules.md -------------------------------------------------------------------------------- /chapter-5—插件和npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter-5—插件和npm.md -------------------------------------------------------------------------------- /chapter.md: -------------------------------------------------------------------------------- 1 | ## 新手教程 2 | 如果你具备了基础的web开发技能(html,javascript,css),想基于现有知识做自己的app,你可以跟我们一起学习Nativescript 3 | -------------------------------------------------------------------------------- /chapter0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter0.md -------------------------------------------------------------------------------- /chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter1.md -------------------------------------------------------------------------------- /chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter2.md -------------------------------------------------------------------------------- /chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter3.md -------------------------------------------------------------------------------- /chapter4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter4.md -------------------------------------------------------------------------------- /chapter5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter5.md -------------------------------------------------------------------------------- /chapter6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter6.md -------------------------------------------------------------------------------- /chapter—6-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/chapter—6-new.md -------------------------------------------------------------------------------- /core_concepts.md: -------------------------------------------------------------------------------- 1 | # 核心概念 2 | 3 | -------------------------------------------------------------------------------- /data_binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/data_binding.md -------------------------------------------------------------------------------- /event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/event.md -------------------------------------------------------------------------------- /hownativescriptworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/hownativescriptworks.md -------------------------------------------------------------------------------- /img/1.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/1.4.1.png -------------------------------------------------------------------------------- /img/1.4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/1.4.2.png -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/2.2-1.png -------------------------------------------------------------------------------- /img/2.2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/2.2-2.png -------------------------------------------------------------------------------- /img/2.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/2.3.1.png -------------------------------------------------------------------------------- /img/2.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/2.3.2.png -------------------------------------------------------------------------------- /img/2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/2.4.1.png -------------------------------------------------------------------------------- /img/2.4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/2.4.2.png -------------------------------------------------------------------------------- /img/2.5.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/2.5.1.png -------------------------------------------------------------------------------- /img/2.5.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/2.5.2.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/3.1.1.png -------------------------------------------------------------------------------- /img/3.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/3.1.2.png -------------------------------------------------------------------------------- /img/3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/3.1.png -------------------------------------------------------------------------------- /img/3.2.1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/3.2.1.gif -------------------------------------------------------------------------------- /img/3.2.2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/3.2.2.gif -------------------------------------------------------------------------------- /img/3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/3.3.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/3.png -------------------------------------------------------------------------------- /img/341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/341.png -------------------------------------------------------------------------------- /img/342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/342.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/4.png -------------------------------------------------------------------------------- /img/421.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/421.png -------------------------------------------------------------------------------- /img/422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/422.png -------------------------------------------------------------------------------- /img/441.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/441.png -------------------------------------------------------------------------------- /img/442.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/442.png -------------------------------------------------------------------------------- /img/443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/443.png -------------------------------------------------------------------------------- /img/444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/444.png -------------------------------------------------------------------------------- /img/451.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/451.gif -------------------------------------------------------------------------------- /img/452.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/452.gif -------------------------------------------------------------------------------- /img/461.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/461.gif -------------------------------------------------------------------------------- /img/462.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/462.gif -------------------------------------------------------------------------------- /img/471.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/471.gif -------------------------------------------------------------------------------- /img/472.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/472.gif -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/img/6.png -------------------------------------------------------------------------------- /modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/modules.md -------------------------------------------------------------------------------- /multithreadingmodel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/multithreadingmodel.md -------------------------------------------------------------------------------- /properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/properties.md -------------------------------------------------------------------------------- /应用生命周期.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/应用生命周期.md -------------------------------------------------------------------------------- /数据绑定.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/数据绑定.md -------------------------------------------------------------------------------- /新手引导.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/新手引导.md -------------------------------------------------------------------------------- /核心概念.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /结构和导航.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScriptCN/NativeScript-in-chinese/HEAD/结构和导航.md --------------------------------------------------------------------------------