├── .gitignore ├── AppScope ├── app.json5 └── resources │ └── base │ ├── element │ └── string.json │ └── media │ └── app_icon.png ├── LICENSE ├── README.md ├── entry ├── .gitignore ├── build-profile.json5 ├── hvigorfile.ts ├── obfuscation-rules.txt ├── oh-package.json5 └── src │ ├── main │ ├── ets │ │ ├── entryability │ │ │ └── EntryAbility.ets │ │ └── pages │ │ │ ├── Index.ets │ │ │ └── StateLayoutPage.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ ├── element │ │ │ ├── color.json │ │ │ └── string.json │ │ ├── media │ │ │ ├── background.png │ │ │ ├── foreground.png │ │ │ ├── layered_image.json │ │ │ ├── startIcon.png │ │ │ ├── state_empty.webp │ │ │ └── state_error.webp │ │ └── profile │ │ │ └── main_pages.json │ │ ├── en_US │ │ └── element │ │ │ └── string.json │ │ └── zh_CN │ │ └── element │ │ └── string.json │ ├── mock │ └── mock-config.json5 │ ├── ohosTest │ ├── ets │ │ ├── test │ │ │ ├── Ability.test.ets │ │ │ └── List.test.ets │ │ ├── testability │ │ │ ├── TestAbility.ets │ │ │ └── pages │ │ │ │ └── Index.ets │ │ └── testrunner │ │ │ └── OpenHarmonyTestRunner.ets │ ├── module.json5 │ └── resources │ │ └── base │ │ ├── element │ │ ├── color.json │ │ └── string.json │ │ ├── media │ │ └── icon.png │ │ └── profile │ │ └── test_pages.json │ └── test │ ├── List.test.ets │ └── LocalUnit.test.ets ├── hvigor └── hvigor-config.json5 ├── hvigorfile.ts ├── library ├── .gitignore ├── BuildProfile.ets ├── CHANGELOG.md ├── Index.ets ├── LICENSE ├── README.md ├── build-profile.json5 ├── consumer-rules.txt ├── example │ ├── .gitignore │ ├── build-profile.json5 │ ├── hvigorfile.ts │ ├── obfuscation-rules.txt │ ├── oh-package.json5 │ └── src │ │ ├── main │ │ ├── ets │ │ │ ├── entryability │ │ │ │ └── EntryAbility.ets │ │ │ └── pages │ │ │ │ ├── Index.ets │ │ │ │ └── StateLayoutPage.ets │ │ ├── module.json5 │ │ └── resources │ │ │ ├── base │ │ │ ├── element │ │ │ │ ├── color.json │ │ │ │ └── string.json │ │ │ ├── media │ │ │ │ ├── background.png │ │ │ │ ├── foreground.png │ │ │ │ ├── layered_image.json │ │ │ │ ├── startIcon.png │ │ │ │ ├── state_empty.webp │ │ │ │ └── state_error.webp │ │ │ └── profile │ │ │ │ └── main_pages.json │ │ │ ├── en_US │ │ │ └── element │ │ │ │ └── string.json │ │ │ └── zh_CN │ │ │ └── element │ │ │ └── string.json │ │ ├── mock │ │ └── mock-config.json5 │ │ ├── ohosTest │ │ ├── ets │ │ │ ├── test │ │ │ │ ├── Ability.test.ets │ │ │ │ └── List.test.ets │ │ │ ├── testability │ │ │ │ ├── TestAbility.ets │ │ │ │ └── pages │ │ │ │ │ └── Index.ets │ │ │ └── testrunner │ │ │ │ └── OpenHarmonyTestRunner.ets │ │ ├── module.json5 │ │ └── resources │ │ │ └── base │ │ │ ├── element │ │ │ ├── color.json │ │ │ └── string.json │ │ │ ├── media │ │ │ └── icon.png │ │ │ └── profile │ │ │ └── test_pages.json │ │ └── test │ │ ├── List.test.ets │ │ └── LocalUnit.test.ets ├── hvigorfile.ts ├── obfuscation-rules.txt ├── oh-package.json5 └── src │ ├── main │ ├── ets │ │ └── components │ │ │ ├── StateConfig.ets │ │ │ ├── StateController.ets │ │ │ ├── StateEnum.ets │ │ │ ├── StateLayout.ets │ │ │ └── Util.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ ├── element │ │ │ └── string.json │ │ └── media │ │ │ ├── ic_state_empty.svg │ │ │ ├── ic_state_error.svg │ │ │ └── ic_state_network.svg │ │ ├── en_US │ │ └── element │ │ │ └── string.json │ │ └── zh_CN │ │ └── element │ │ └── string.json │ ├── mock │ └── mock-config.json5 │ ├── ohosTest │ ├── ets │ │ ├── test │ │ │ ├── Ability.test.ets │ │ │ └── List.test.ets │ │ ├── testability │ │ │ ├── TestAbility.ets │ │ │ └── pages │ │ │ │ └── Index.ets │ │ └── testrunner │ │ │ └── OpenHarmonyTestRunner.ets │ ├── module.json5 │ └── resources │ │ └── base │ │ ├── element │ │ ├── color.json │ │ └── string.json │ │ ├── media │ │ └── icon.png │ │ └── profile │ │ └── test_pages.json │ └── test │ ├── List.test.ets │ └── LocalUnit.test.ets ├── oh-package-lock.json5 └── oh-package.json5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/AppScope/app.json5 -------------------------------------------------------------------------------- /AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /AppScope/resources/base/media/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/AppScope/resources/base/media/app_icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/README.md -------------------------------------------------------------------------------- /entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/.gitignore -------------------------------------------------------------------------------- /entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/build-profile.json5 -------------------------------------------------------------------------------- /entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/hvigorfile.ts -------------------------------------------------------------------------------- /entry/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/obfuscation-rules.txt -------------------------------------------------------------------------------- /entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/StateLayoutPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/ets/pages/StateLayoutPage.ets -------------------------------------------------------------------------------- /entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/module.json5 -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/base/media/background.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/base/media/foreground.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/startIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/base/media/startIcon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/state_empty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/base/media/state_empty.webp -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/state_error.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/base/media/state_error.webp -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /entry/src/main/resources/en_US/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/en_US/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/zh_CN/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/main/resources/zh_CN/element/string.json -------------------------------------------------------------------------------- /entry/src/mock/mock-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/testability/TestAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/ohosTest/ets/testability/TestAbility.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/testability/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/ohosTest/ets/testability/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /entry/src/ohosTest/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/ohosTest/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/ohosTest/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/ohosTest/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/ohosTest/resources/base/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/ohosTest/resources/base/media/icon.png -------------------------------------------------------------------------------- /entry/src/ohosTest/resources/base/profile/test_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/ohosTest/resources/base/profile/test_pages.json -------------------------------------------------------------------------------- /entry/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/entry/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/hvigorfile.ts -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/.gitignore -------------------------------------------------------------------------------- /library/BuildProfile.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/BuildProfile.ets -------------------------------------------------------------------------------- /library/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/CHANGELOG.md -------------------------------------------------------------------------------- /library/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/Index.ets -------------------------------------------------------------------------------- /library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/LICENSE -------------------------------------------------------------------------------- /library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/README.md -------------------------------------------------------------------------------- /library/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/build-profile.json5 -------------------------------------------------------------------------------- /library/consumer-rules.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/.gitignore -------------------------------------------------------------------------------- /library/example/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/build-profile.json5 -------------------------------------------------------------------------------- /library/example/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/hvigorfile.ts -------------------------------------------------------------------------------- /library/example/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/obfuscation-rules.txt -------------------------------------------------------------------------------- /library/example/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/oh-package.json5 -------------------------------------------------------------------------------- /library/example/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /library/example/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /library/example/src/main/ets/pages/StateLayoutPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/ets/pages/StateLayoutPage.ets -------------------------------------------------------------------------------- /library/example/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/module.json5 -------------------------------------------------------------------------------- /library/example/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /library/example/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /library/example/src/main/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/base/media/background.png -------------------------------------------------------------------------------- /library/example/src/main/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/base/media/foreground.png -------------------------------------------------------------------------------- /library/example/src/main/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /library/example/src/main/resources/base/media/startIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/base/media/startIcon.png -------------------------------------------------------------------------------- /library/example/src/main/resources/base/media/state_empty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/base/media/state_empty.webp -------------------------------------------------------------------------------- /library/example/src/main/resources/base/media/state_error.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/base/media/state_error.webp -------------------------------------------------------------------------------- /library/example/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /library/example/src/main/resources/en_US/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/en_US/element/string.json -------------------------------------------------------------------------------- /library/example/src/main/resources/zh_CN/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/main/resources/zh_CN/element/string.json -------------------------------------------------------------------------------- /library/example/src/mock/mock-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /library/example/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /library/example/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /library/example/src/ohosTest/ets/testability/TestAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/ohosTest/ets/testability/TestAbility.ets -------------------------------------------------------------------------------- /library/example/src/ohosTest/ets/testability/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/ohosTest/ets/testability/pages/Index.ets -------------------------------------------------------------------------------- /library/example/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ets -------------------------------------------------------------------------------- /library/example/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /library/example/src/ohosTest/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/ohosTest/resources/base/element/color.json -------------------------------------------------------------------------------- /library/example/src/ohosTest/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/ohosTest/resources/base/element/string.json -------------------------------------------------------------------------------- /library/example/src/ohosTest/resources/base/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/ohosTest/resources/base/media/icon.png -------------------------------------------------------------------------------- /library/example/src/ohosTest/resources/base/profile/test_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/ohosTest/resources/base/profile/test_pages.json -------------------------------------------------------------------------------- /library/example/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/test/List.test.ets -------------------------------------------------------------------------------- /library/example/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/example/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /library/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/hvigorfile.ts -------------------------------------------------------------------------------- /library/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/obfuscation-rules.txt -------------------------------------------------------------------------------- /library/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/oh-package.json5 -------------------------------------------------------------------------------- /library/src/main/ets/components/StateConfig.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/ets/components/StateConfig.ets -------------------------------------------------------------------------------- /library/src/main/ets/components/StateController.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/ets/components/StateController.ets -------------------------------------------------------------------------------- /library/src/main/ets/components/StateEnum.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/ets/components/StateEnum.ets -------------------------------------------------------------------------------- /library/src/main/ets/components/StateLayout.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/ets/components/StateLayout.ets -------------------------------------------------------------------------------- /library/src/main/ets/components/Util.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/ets/components/Util.ets -------------------------------------------------------------------------------- /library/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/module.json5 -------------------------------------------------------------------------------- /library/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /library/src/main/resources/base/media/ic_state_empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/resources/base/media/ic_state_empty.svg -------------------------------------------------------------------------------- /library/src/main/resources/base/media/ic_state_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/resources/base/media/ic_state_error.svg -------------------------------------------------------------------------------- /library/src/main/resources/base/media/ic_state_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/resources/base/media/ic_state_network.svg -------------------------------------------------------------------------------- /library/src/main/resources/en_US/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/resources/en_US/element/string.json -------------------------------------------------------------------------------- /library/src/main/resources/zh_CN/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/main/resources/zh_CN/element/string.json -------------------------------------------------------------------------------- /library/src/mock/mock-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /library/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /library/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /library/src/ohosTest/ets/testability/TestAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/ohosTest/ets/testability/TestAbility.ets -------------------------------------------------------------------------------- /library/src/ohosTest/ets/testability/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/ohosTest/ets/testability/pages/Index.ets -------------------------------------------------------------------------------- /library/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ets -------------------------------------------------------------------------------- /library/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /library/src/ohosTest/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/ohosTest/resources/base/element/color.json -------------------------------------------------------------------------------- /library/src/ohosTest/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/ohosTest/resources/base/element/string.json -------------------------------------------------------------------------------- /library/src/ohosTest/resources/base/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/ohosTest/resources/base/media/icon.png -------------------------------------------------------------------------------- /library/src/ohosTest/resources/base/profile/test_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/ohosTest/resources/base/profile/test_pages.json -------------------------------------------------------------------------------- /library/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/test/List.test.ets -------------------------------------------------------------------------------- /library/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/library/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/oh-package-lock.json5 -------------------------------------------------------------------------------- /oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChawLoo/StateLayout/HEAD/oh-package.json5 --------------------------------------------------------------------------------