demo: add SliderStyleDemo

This commit is contained in:
王劲鹏 2023-06-13 15:11:12 +08:00 committed by osborn
parent e5e10e7abc
commit 1d7001e01a

View File

@ -0,0 +1,37 @@
import { Group, Panel, gravity, LayoutSpec, vlayout, slider, slideItem, layoutConfig, modal, stack } from "doric";
import { colors } from "./utils";
@Entry
class SliderStyleDemo extends Panel {
build(rootView: Group): void {
let pager = slider({
itemCount: 12,
renderPage: (idx) => {
return slideItem(stack([], {
width: Environment.screenWidth * 307 / 375,
height: Environment.screenWidth * 307 / 375 * 520 / 307,
layoutConfig: layoutConfig()
.configWidth(LayoutSpec.JUST)
.configHeight(LayoutSpec.JUST)
.configAlignment(gravity().center()),
backgroundColor: (colors[++idx % colors.length])
}))
},
slideStyle: { type: "gallery", minScale: 480 / 520, minAlpha: 0.5, itemWidth: Environment.screenWidth * 307 / 375 },
layoutConfig: {
widthSpec: LayoutSpec.MOST,
heightSpec: LayoutSpec.MOST,
weight: 1,
}
})
rootView.addChild(vlayout([
pager,
]).also(it => {
it.layoutConfig = {
widthSpec: LayoutSpec.MOST,
heightSpec: LayoutSpec.MOST,
}
}))
}
}