mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 17:15:26 +00:00
17 lines
367 B
Plaintext
17 lines
367 B
Plaintext
@GUI::Frame {
|
|
shape: "Container"
|
|
shadow: "Raised"
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [4]
|
|
}
|
|
|
|
@GUI::ScrollableContainerWidget {
|
|
name: "scrollable_container"
|
|
content_widget: @GUI::Widget {
|
|
name: "emojis"
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
}
|
|
}
|
|
}
|