45 lines
1.0 KiB
Rust
45 lines
1.0 KiB
Rust
use makepad_widgets::*;
|
|
|
|
live_design! {
|
|
import makepad_widgets::base::*;
|
|
import makepad_widgets::theme_desktop_dark::*;
|
|
|
|
SelectorModal = <Modal> {
|
|
content: {
|
|
height: 600,
|
|
width: 300,
|
|
show_bg: true,
|
|
draw_bg: {
|
|
color: #3c3c3c
|
|
}
|
|
align: {
|
|
x: 0.5,
|
|
y: 0.5
|
|
}
|
|
<RoundedView> {
|
|
|
|
show_bg: true,
|
|
draw_bg: {
|
|
color: #3c3c3c
|
|
radius: 3.0
|
|
}
|
|
|
|
notifacion_title = <Label> {
|
|
text: "Notification"
|
|
}
|
|
notification_message = <Label> {
|
|
width: 170
|
|
}
|
|
close_popup_button = <Button> {
|
|
width: Fit,
|
|
height: Fit,
|
|
margin: {top: -20 },
|
|
icon_walk: {width: 10, height: 10}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|