• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2025 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15import { SceneModuleInfo } from './SceneModuleInfo';
16import { $r } from '@ohos.arkui.component'
17export const SCENE_MODULE_LIST: SceneModuleInfo[] = [
18  new SceneModuleInfo(
19    $r('app.media.backgroundblur_my_select'),
20    '应用开发性能优化入门引导',
21    'performance/PerformanceIntroView',
22    '性能优化',
23    1,
24    3,
25    $r('app.media.backgroundblur_my_select'),
26    '',
27    'README.md'
28  ),
29  new SceneModuleInfo(
30    $r('app.media.backgroundblur_my_select'),
31    '性能优化实操宝典',
32    'performance/PerformancePracticeView',
33    '性能优化',
34    2,
35    4,
36    $r('app.media.backgroundblur_my_select'),
37    '',
38    'performance-optimization-practical-guidance.md'
39  ),
40  new SceneModuleInfo(
41    $r('app.media.backgroundblur_my_select'),
42    'UI 框架基础使用',
43    'uiframework/UIFrameworkBasicsView',
44    '界面开发',
45    3,
46    2,
47    $r('app.media.backgroundblur_my_select'),
48    '',
49    'ui-framework.md'
50  ),
51  new SceneModuleInfo(
52    $r('app.media.backgroundblur_my_select'),
53    '动效开发实战',
54    'animation/AnimationPracticeView',
55    '界面开发',
56    4,
57    4,
58    $r('app.media.backgroundblur_my_select'),
59    '',
60    'animation-guide.md'
61  ),
62  new SceneModuleInfo(
63    $r('app.media.backgroundblur_my_select'),
64    '数据存储与文件操作',
65    'storage/StorageModuleView',
66    '基础能力',
67    5,
68    3,
69    $r('app.media.backgroundblur_my_select'),
70    '',
71    'storage-and-file.md'
72  ),
73  new SceneModuleInfo(
74    $r('app.media.backgroundblur_my_select'),
75    '路由与模块解耦',
76    'router/RouterNavigationView',
77    '路由跳转',
78    6,
79    3,
80    $r('app.media.backgroundblur_my_select'),
81    '',
82    'router-guide.md'
83  )
84];
85