Fieldset(
[
Legend([text('Page title')]),
Input(placeholder: 'My awesome page'),
FormLabel([
text('You can edit page title later on from settings'),
]),
],
style: [Size.wxs],
)
Fieldset with background and border
Fieldset(
[
Legend([text('Page title')]),
Input(placeholder: 'My awesome page'),
FormLabel([
text('You can edit page title later on from settings'),
]),
],
style: [
Size.wxs,
BgUtil.base200,
Spacing.p(4),
BorderUtil.border,
BorderUtil.base300,
Effects.roundedBox,
],
)