• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Quick Start
2
3- Getting Started
4  - [Before You Start](start-overview.md)
5  - [Building the First ArkTS Application in Stage Model](start-with-ets-stage.md)
6- Development Fundamentals
7  - Application Package Fundamentals
8    - [Application Package Overview](application-package-overview.md)
9    - Application Package Structure
10      - [Application Package Structure in Stage Model](application-package-structure-stage.md)
11      - [Application Package Structure in FA Model](application-package-structure-fa.md)
12    - Multi-HAP Mechanism
13      - [Multi-HAP Design Objectives](multi-hap-objective.md)
14      - [Multi-HAP Build View](multi-hap-build-view.md)
15      - [Multi-HAP Development, Debugging, Release, and Deployment Process](multi-hap-release-deployment.md)
16      - [Multi-HAP Usage Rules](multi-hap-rules.md)
17      - [Multi-HAP Operation Mechanism and Data Communication Modes](multi-hap-principles.md)
18    - [Application Installation and Uninstallation Process](application-package-install-uninstall.md)
19    - [Application Package Update Process](application-package-update.md)
20    - Shared Package
21      - [Shared Package Overview](shared-guide.md)
22      - [HAR](har-package.md)
23      - HSP
24        - [In-Application HSP Development](in-app-hsp.md)
25    - Quick Fix
26      - [Quick Fix Overview](quickfix-principles.md)
27      - [CLI-based Quick Fix Development](quickfix-debug.md)
28  - Application Configuration Files in Stage Model
29    - [Application Configuration File Overview (Stage Model)](application-configuration-file-overview-stage.md)
30    - [app.json5 Configuration File](app-configuration-file.md)
31    - [module.json5 Configuration File](module-configuration-file.md)
32  - Application Configuration Files in FA Model
33    - [Application Configuration File Overview (FA Model)](application-configuration-file-overview-fa.md)
34    - [Internal Structure of the app Tag](app-structure.md)
35    - [Internal Structure of the deviceConfig Tag](deviceconfig-structure.md)
36    - [Internal Structure of the module Tag](module-structure.md)
37  - [Resource Categories and Access](resource-categories-and-access.md)
38- Learning ArkTS
39  - [Getting Started with ArkTS](arkts-get-started.md)
40  - [Introduction to ArkTS](introduction-to-arkts.md)
41  - TypeScript to ArkTS Migration Guide
42    - [ArkTS Migration Background](arkts-migration-background.md)
43    - [TypeScript to ArkTS Cookbook](typescript-to-arkts-migration-guide.md)
44  - UI paradigms
45    - Basic Syntax
46      - [Basic Syntax Overview](arkts-basic-syntax-overview.md)
47      - [Declarative UI Description](arkts-declarative-ui-description.md)
48      - Custom Component
49        - [Creating a Custom Component](arkts-create-custom-components.md)
50        - [Page and Custom Component Lifecycle](arkts-page-custom-components-lifecycle.md)
51      - [\@Builder Decorator: Custom Builder Function](arkts-builder.md)
52      - [\@BuilderParam Decorator: @Builder Function Reference](arkts-builderparam.md)
53      - [\@Styles Decorator: Definition of Resusable Styles](arkts-style.md)
54      - [\@Extend Decorator: Extension of Built-in Components](arkts-extend.md)
55      - [stateStyles Decorator: Polymorphic Style](arkts-statestyles.md)
56      - [\@AnimatableExtend Decorator: Definition of Animatable Attributes](arkts-animatable-extend.md)
57    - State Management
58      - [State Management Overview](arkts-state-management-overview.md)
59      - Component State Management
60        - [\@State Decorator: State Owned by Component](arkts-state.md)
61        - [\@Prop Decorator: One-Way Synchronization from Parent to Child Components](arkts-prop.md)
62        - [\@Link Decorator: Two-Way Synchronization Between Parent and Child Components](arkts-link.md)
63        - [\@Provide and \@Consume Decorators: Two-Way Synchronization with Descendant Components](arkts-provide-and-consume.md)
64        - [\@Observed and \@ObjectLink Decorators: Observing Attribute Changes in Nested Class Objects](arkts-observed-and-objectlink.md)
65      - Application State Management
66        - [Application State Management Overview](arkts-application-state-management-overview.md)
67        - [LocalStorage: UI State Storage](arkts-localstorage.md)
68        - [AppStorage: Application-wide UI State Storage](arkts-appstorage.md)
69        - [PersistentStorage: Application State Persistence](arkts-persiststorage.md)
70        - [Environment: Device Environment Query](arkts-environment.md)
71      - Other State Management Features
72        - [Overview of Other State Management Features](arkts-other-state-mgmt-functions-overview.md)
73        - [\@Watch: Getting Notified of State Variable Changes](arkts-watch.md)
74        - [$$ Syntax: Two-Way Synchronization of Built-in Components](arkts-two-way-sync.md)
75      - [MVVM](arkts-mvvm.md)
76      - [Best Practices for State Management](arkts-state-management-best-practices.md)
77    - Rendering Control
78      - [Rendering Control Overview](arkts-rendering-control-overview.md)
79      - [if/else: Conditional Rendering](arkts-rendering-control-ifelse.md)
80      - [ForEach: Rendering of Repeated Content](arkts-rendering-control-foreach.md)
81      - [LazyForEach: Lazy Data Loading](arkts-rendering-control-lazyforeach.md)
82      - [Best Practices for Rendering Control](arkts-rendering-control-best-practices.md)
83