You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
743 B

Page.inDev(45)
Page.addExtension(MaterialIcons);
builder.page(
builder.column()
.arrangement(Arrangement.SPACE_EVENLY)
.alignment(Alignment.CENTER)
.modifier(
new Modifier()
.border(new Border().all(15))
.padding(32)
.dimensions().width(1200)
)
.childContext([
builder.header(1)
.alignment(Alignment.CENTER)
.text("Process List")
,
aktionsKonsole()
,
listArea(new Modifier().margin().vertical(5))
,
importArea(
new Modifier()
.setStyleRule("float", "bottom")
)
])
)