2019-12-04 14:07:14 +08:00
|
|
|
|
2020-04-16 19:21:24 +08:00
|
|
|
import { Group, Panel, Text, text, Color, Stack, vlayout, hlayout, scroller, layoutConfig, Gravity, GradientOrientation } from "doric";
|
2019-12-04 14:07:14 +08:00
|
|
|
import { colors } from "./utils";
|
|
|
|
|
|
|
|
|
|
|
|
function box(idx = 0) {
|
|
|
|
return (new Stack).also(it => {
|
|
|
|
it.width = it.height = 20
|
|
|
|
it.backgroundColor = colors[idx || 0]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function boxStr(str: string, idx = 0) {
|
|
|
|
return (new Text).also(it => {
|
|
|
|
it.width = it.height = 20
|
|
|
|
it.text = str
|
|
|
|
it.textColor = Color.WHITE
|
|
|
|
it.backgroundColor = colors[idx || 0]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function label(str: string) {
|
|
|
|
return text({
|
|
|
|
text: str,
|
|
|
|
textSize: 16,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
@Entry
|
|
|
|
class EffectsDemo extends Panel {
|
2020-04-16 19:21:24 +08:00
|
|
|
|
2019-12-04 14:07:14 +08:00
|
|
|
build(rootView: Group) {
|
|
|
|
scroller(
|
2020-01-06 10:43:18 +08:00
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
hlayout(
|
|
|
|
[
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Origin view"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100
|
|
|
|
}),],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Border"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
border: {
|
|
|
|
width: 5,
|
|
|
|
color: colors[3]
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Corner"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: 10,
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
bottom: 10
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Shadow"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
shadow: {
|
|
|
|
opacity: 1,
|
|
|
|
color: colors[1],
|
|
|
|
offsetX: 3,
|
|
|
|
offsetY: 3,
|
|
|
|
radius: 5,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
bottom: 10
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
],
|
|
|
|
{ space: 20 }
|
|
|
|
),
|
|
|
|
hlayout(
|
|
|
|
[
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Border,Corner"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
border: {
|
|
|
|
width: 5,
|
|
|
|
color: colors[3]
|
|
|
|
},
|
|
|
|
corners: 10,
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Border,Shadow"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
border: {
|
|
|
|
width: 5,
|
|
|
|
color: colors[3]
|
|
|
|
},
|
|
|
|
shadow: {
|
|
|
|
opacity: 1,
|
|
|
|
color: colors[1],
|
|
|
|
offsetX: 3,
|
|
|
|
offsetY: 3,
|
|
|
|
radius: 5,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
bottom: 10
|
|
|
|
})
|
|
|
|
}),],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Corner,Shadow"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: 10,
|
|
|
|
shadow: {
|
|
|
|
opacity: 1,
|
|
|
|
color: colors[1],
|
|
|
|
offsetX: 3,
|
|
|
|
offsetY: 3,
|
|
|
|
radius: 5,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
bottom: 10
|
|
|
|
})
|
|
|
|
}),],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Border,Corner,Shadow"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
border: {
|
|
|
|
width: 5,
|
|
|
|
color: colors[3]
|
|
|
|
},
|
|
|
|
corners: 10,
|
|
|
|
shadow: {
|
|
|
|
opacity: 1,
|
|
|
|
color: colors[1],
|
|
|
|
offsetX: 3,
|
|
|
|
offsetY: 3,
|
|
|
|
radius: 5,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
],
|
|
|
|
{ space: 20 }
|
|
|
|
),
|
|
|
|
hlayout(
|
|
|
|
[
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Shadow"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: 50,
|
|
|
|
shadow: {
|
|
|
|
opacity: 1,
|
|
|
|
color: colors[1],
|
|
|
|
offsetX: 0,
|
|
|
|
offsetY: 0,
|
|
|
|
radius: 10,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 10,
|
|
|
|
right: 10,
|
|
|
|
bottom: 10,
|
|
|
|
})
|
|
|
|
}),],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Shadow,offset"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: 50,
|
|
|
|
shadow: {
|
|
|
|
opacity: 1,
|
|
|
|
color: colors[1],
|
|
|
|
offsetX: 5,
|
|
|
|
offsetY: 5,
|
|
|
|
radius: 5,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 10,
|
|
|
|
right: 10,
|
|
|
|
bottom: 10,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Shadow,opacity"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: 50,
|
|
|
|
shadow: {
|
|
|
|
opacity: 0.5,
|
|
|
|
color: colors[1],
|
|
|
|
offsetX: 5,
|
|
|
|
offsetY: 5,
|
|
|
|
radius: 5,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 10,
|
|
|
|
right: 10,
|
|
|
|
bottom: 10,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Shadow,color"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: 50,
|
|
|
|
shadow: {
|
|
|
|
opacity: 1,
|
|
|
|
color: colors[2],
|
|
|
|
offsetX: 5,
|
|
|
|
offsetY: 5,
|
|
|
|
radius: 5,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 10,
|
|
|
|
right: 10,
|
|
|
|
bottom: 10,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{ space: 20 }
|
|
|
|
),
|
|
|
|
hlayout(
|
|
|
|
[
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Corner round"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: 50,
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Corner left top"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: {
|
|
|
|
leftTop: 50,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Corner right top"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: {
|
|
|
|
rightTop: 50,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Corner left bottom"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: {
|
|
|
|
leftBottom: 50,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Corner right bottom"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
corners: {
|
|
|
|
rightBottom: 50,
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{ space: 20 }
|
|
|
|
),
|
2020-03-13 16:57:28 +08:00
|
|
|
hlayout(
|
|
|
|
[
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Gradient TOP_BOTTOM"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
2020-04-16 19:21:24 +08:00
|
|
|
backgroundColor: {
|
2020-03-13 16:57:28 +08:00
|
|
|
start: colors[0],
|
|
|
|
end: Color.WHITE,
|
|
|
|
orientation: GradientOrientation.TOP_BOTTOM
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Gradient TR_BL"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
2020-04-16 19:21:24 +08:00
|
|
|
backgroundColor: {
|
2020-03-13 16:57:28 +08:00
|
|
|
start: colors[0],
|
|
|
|
end: Color.WHITE,
|
|
|
|
orientation: GradientOrientation.TR_BL
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Gradient RIGHT_LEFT"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
2020-04-16 19:21:24 +08:00
|
|
|
backgroundColor: {
|
2020-03-13 16:57:28 +08:00
|
|
|
start: colors[0],
|
|
|
|
end: Color.WHITE,
|
|
|
|
orientation: GradientOrientation.RIGHT_LEFT
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Gradient BR_TL"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
2020-04-16 19:21:24 +08:00
|
|
|
backgroundColor: {
|
2020-03-13 16:57:28 +08:00
|
|
|
start: colors[0],
|
|
|
|
end: Color.WHITE,
|
|
|
|
orientation: GradientOrientation.BR_TL
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Gradient BOTTOM_TOP"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
2020-04-16 19:21:24 +08:00
|
|
|
backgroundColor: {
|
2020-03-13 16:57:28 +08:00
|
|
|
start: colors[0],
|
|
|
|
end: Color.WHITE,
|
|
|
|
orientation: GradientOrientation.BOTTOM_TOP
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Gradient BL_TR"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
2020-04-16 19:21:24 +08:00
|
|
|
backgroundColor: {
|
2020-03-13 16:57:28 +08:00
|
|
|
start: colors[0],
|
|
|
|
end: Color.WHITE,
|
|
|
|
orientation: GradientOrientation.BL_TR
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Gradient LEFT_RIGHT"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
2020-04-16 19:21:24 +08:00
|
|
|
backgroundColor: {
|
2020-03-13 16:57:28 +08:00
|
|
|
start: colors[0],
|
|
|
|
end: Color.WHITE,
|
|
|
|
orientation: GradientOrientation.LEFT_RIGHT
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Gradient TL_BR"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
2020-04-16 19:21:24 +08:00
|
|
|
backgroundColor: {
|
2020-03-13 16:57:28 +08:00
|
|
|
start: colors[0],
|
|
|
|
end: Color.WHITE,
|
|
|
|
orientation: GradientOrientation.TL_BR
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{ space: 20 }
|
|
|
|
),
|
2020-05-09 10:50:07 +08:00
|
|
|
hlayout(
|
|
|
|
[
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Multi-Grad TOP_BOTTOM"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
backgroundColor: {
|
|
|
|
colors: [colors[0], Color.WHITE, colors[1]],
|
|
|
|
orientation: GradientOrientation.TOP_BOTTOM
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
2020-05-09 11:17:30 +08:00
|
|
|
label("Multi-Grad TR_BL"),
|
2020-05-09 10:50:07 +08:00
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
backgroundColor: {
|
|
|
|
colors: [colors[0], Color.WHITE, colors[1]],
|
|
|
|
orientation: GradientOrientation.TR_BL
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Multi-Grad RIGHT_LEFT"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
backgroundColor: {
|
|
|
|
colors: [colors[0], Color.WHITE, colors[1]],
|
|
|
|
orientation: GradientOrientation.RIGHT_LEFT
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Multi-Grad BR_TL"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
backgroundColor: {
|
|
|
|
colors: [colors[0], Color.WHITE, colors[1]],
|
|
|
|
orientation: GradientOrientation.BR_TL
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Multi-Grad BOTTOM_TOP"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
backgroundColor: {
|
|
|
|
colors: [colors[0], Color.WHITE, colors[1]],
|
|
|
|
orientation: GradientOrientation.BOTTOM_TOP
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Multi-Grad BL_TR"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
backgroundColor: {
|
|
|
|
colors: [colors[0], Color.WHITE, colors[1]],
|
|
|
|
orientation: GradientOrientation.BL_TR
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
2020-05-09 11:17:30 +08:00
|
|
|
label("Multi-Grad LEFT_RIGHT"),
|
2020-05-09 10:50:07 +08:00
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
backgroundColor: {
|
|
|
|
colors: [colors[0], Color.WHITE, colors[1]],
|
|
|
|
orientation: GradientOrientation.LEFT_RIGHT
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
label("Multi-Grad TL_BR"),
|
|
|
|
box().apply({
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
backgroundColor: {
|
|
|
|
colors: [colors[0], Color.WHITE, colors[1]],
|
|
|
|
orientation: GradientOrientation.TL_BR
|
|
|
|
},
|
|
|
|
layoutConfig: layoutConfig().just().configMargin({
|
|
|
|
left: 5,
|
|
|
|
right: 5,
|
|
|
|
bottom: 5,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{
|
|
|
|
gravity: Gravity.Center,
|
|
|
|
space: 10,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{ space: 20 }
|
|
|
|
),
|
2020-01-06 10:43:18 +08:00
|
|
|
],
|
|
|
|
{
|
|
|
|
space: 20
|
|
|
|
}),
|
|
|
|
{
|
|
|
|
layoutConfig: layoutConfig().most()
|
|
|
|
}
|
|
|
|
).in(rootView)
|
2019-12-04 14:07:14 +08:00
|
|
|
}
|
|
|
|
}
|