harmony-template/entry/src/main/ets/pages/Index.ets
2023-11-20 14:57:37 +08:00

20 lines
333 B
Plaintext

// 下滑弹窗测试
import { CustomPanel } from '../components/CustomPanel';
import curves from '@ohos.curves';
import { InnerView } from '../views/InnerView'
@Preview
@Entry
@Component
struct Index {
private TAG: string = 'Index'
build() {
Column() {
InnerView()
}
.height('100%')
.width('100%')
}
}