webpage test

This commit is contained in:
DevWiki 2024-04-09 17:54:16 +08:00
parent 338b784b8b
commit aba6717228
4 changed files with 8 additions and 4 deletions

View File

@ -11,7 +11,6 @@ export default class AppAbility extends UIAbility {
onCreate(want: Want, launchParam: AbilityConstant.LaunchParam): void {
hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate');
ScreenUtil.getInstance().initScreenSize();
}
onDestroy(): void {

View File

@ -16,6 +16,10 @@ struct Index {
customStyle: true
})
aboutToAppear(): void {
ScreenUtil.getInstance().initScreenSize();
}
onPageShow(): void {
ScreenUtil.getInstance().setPreferredOrientation(window.Orientation.AUTO_ROTATION);
}

View File

@ -1,10 +1,11 @@
import { WebView, ComponentConst, CommonRes, TitleBar, WebViewController } from '@devwiki/common_ui';
import { WebView, ComponentConst, CommonRes, TitleBar, WebViewController, ScreenUtil } from '@devwiki/common_ui';
@Entry
@Component
export struct WebPage {
@State viewModel: WebPageViewModel = new WebPageViewModel();
@StorageLink(ScreenUtil.isPortraitKey)isPortrait: boolean = true;
private webViewController?: WebPageController;
aboutToAppear(): void {
@ -39,7 +40,7 @@ export struct WebPage {
left: { anchor: ComponentConst.ContainerId, align: HorizontalAlign.Start }
}).width('100%').id("divider")
WebView({ webUrl: this.viewModel?.webUrl, controller: this.webViewController }).width('100%')
WebView({ webUrl: this.isPortrait? this.viewModel?.webUrl : "https://blog.devwiki.net", controller: this.webViewController }).width('100%')
.alignRules({
top: { anchor: "divider", align: VerticalAlign.Bottom },
left: { anchor: ComponentConst.ContainerId, align: HorizontalAlign.Start },

View File

@ -18,6 +18,6 @@ struct LinearLayoutPage {
Row().width('90%').height('10%').backgroundColor("#ff4455")
Row().width('90%').height('10%').backgroundColor("#ff4455")
Row().width('90%').height('10%').backgroundColor("#ff4455")
}.height('100%').width('100%')
}.width('100%')
}
}