20 lines
333 B
Plaintext
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%')
|
|
}
|
|
}
|