QualityCommentsPage.ets
416 Bytes
import { WindowModel } from 'wdKit/Index';
import { QualityCommentsComponent } from '../comment/view/QualityCommentsComponent';
@Entry
@Component
struct QualityCommentsPage {
onPageShow(): void {
WindowModel.shared.setWindowLayoutFullScreen(true)
}
onPageHide(): void {
WindowModel.shared.setWindowLayoutFullScreen(false)
}
build() {
Column() {
QualityCommentsComponent();
}
}
}