This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-demo/src/SimpleDemo.ts

19 lines
516 B
TypeScript
Raw Normal View History

2021-04-19 17:57:10 +08:00
import { Group, Panel, stack, Color, LayoutSpec, layoutConfig } from "doric";
2021-03-01 18:59:09 +08:00
@Entry
2021-04-19 17:57:10 +08:00
class SimpleDemo extends Panel {
2021-03-01 18:59:09 +08:00
build(rootView: Group) {
2021-04-19 17:57:10 +08:00
stack([
stack([
stack(
[],
{
2021-04-19 17:57:10 +08:00
layoutConfig: layoutConfig().just().configWidth(LayoutSpec.MOST),
height: 50,
backgroundColor: Color.RED
}
)
])
]).in(rootView)
2021-03-01 18:59:09 +08:00
}
}