diff --git a/README_EN.md b/README_EN.md new file mode 100644 index 0000000000000000000000000000000000000000..d27b867cbe7d702321d9ae68c63b670919ec400b --- /dev/null +++ b/README_EN.md @@ -0,0 +1,44 @@ +# Same-level Rendering of ArkWeb + +### Overview + +This sample shows how to use the same-level rendering of ArkWeb. The native components of the system are directly rendered to the front-end HTML5 page. They not only provide some functions that cannot be implemented by the HTML5 components, but also improve user experience. + +### Preview + +![](./screenshot/device/pic_EN.png) + +**How to Use** + +View the rendering effect at the same level on the page. **Text** and **Image** are native components. + +### High-Performance Knowledge + +The native same-level rendering components of ArkWeb not only provide some functions that cannot be implemented by HTML5 components, but also improve user experience. By rendering nodes at the same level, you can reuse nodes and reduce repeated node overhead. + +### Project Directory +``` +├──entry/src/main/ets/ +│ ├──mock +│ │ └──GoodsMock.ets // Simulated data class +│ ├──entryability +│ │ └──EntryAbility.ets // Configuration class +│ └──model +│ │ └──GoodsModel.ets // Type declaration +│ └──pages +│ └──Index.ets // Entry point class +└──entry/src/main/resource // Static resources of the app +``` +### Required Permissions + +- **ohos.permission.INTERNET**, which allows an app to access the Internet. + +### Constraints + +1. The sample app is supported only on Huawei phones running the standard system. + +2. The HarmonyOS version must be HarmonyOS NEXT Developer Beta1 or later. + +3. The DevEco Studio version must be DevEco Studio NEXT Developer Beta1 or later. + +4. The HarmonyOS SDK version must be HarmonyOS NEXT Developer Beta1 or later. diff --git a/screenshot/device/pic_EN.png b/screenshot/device/pic_EN.png new file mode 100644 index 0000000000000000000000000000000000000000..2a9f00fdade84ce2337b70aa4cef9e897f988294 Binary files /dev/null and b/screenshot/device/pic_EN.png differ