34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
import { Group, Panel, gravity, Color, LayoutSpec, vlayout, scroller, layoutConfig, modal, network } from "doric";
|
|
import { title, label, colors } from "./utils";
|
|
|
|
@Entry
|
|
class NetworkDemo extends Panel {
|
|
build(rootView: Group): void {
|
|
scroller(vlayout([
|
|
title("Network Demo"),
|
|
label('Click me').apply({
|
|
width: 200,
|
|
height: 50,
|
|
backgroundColor: colors[0],
|
|
textSize: 30,
|
|
textColor: Color.WHITE,
|
|
layoutConfig: layoutConfig().just(),
|
|
onClick: () => {
|
|
network(context).get('https://m.baidu.com').then(
|
|
e => {
|
|
modal(context).alert(JSON.stringify(e))
|
|
}
|
|
).catch(e => {
|
|
modal(context).toast('Catched:' + JSON.stringify(e))
|
|
})
|
|
}
|
|
}),
|
|
]).apply({
|
|
layoutConfig: layoutConfig().most().configHeight(LayoutSpec.FIT),
|
|
gravity: gravity().center(),
|
|
space: 10,
|
|
})).apply({
|
|
layoutConfig: layoutConfig().most(),
|
|
}).in(rootView)
|
|
}
|
|
} |