dioxus/examples/tui_text.rs

114 lines
2.9 KiB
Rust
Raw Normal View History

2022-01-01 04:53:37 +00:00
use dioxus::prelude::*;
fn main() {
2022-03-09 18:36:30 +00:00
dioxus::tui::launch(app);
2022-01-01 04:53:37 +00:00
}
fn app(cx: Scope) -> Element {
2022-03-09 18:36:30 +00:00
let alpha = use_state(&cx, || 100);
2022-02-17 22:06:28 +00:00
2022-01-01 04:53:37 +00:00
cx.render(rsx! {
div {
width: "100%",
height: "100%",
flex_direction: "column",
2022-03-09 18:36:30 +00:00
onwheel: move |evt| alpha.set((**alpha + evt.data.delta_y as i64).min(100).max(0)),
2022-01-01 04:53:37 +00:00
p {
background_color: "black",
flex_direction: "column",
justify_content: "center",
align_items: "center",
2022-02-17 22:06:28 +00:00
color: "green",
2022-01-01 04:53:37 +00:00
"hi"
"hi"
"hi"
}
li {
background_color: "red",
flex_direction: "column",
justify_content: "center",
align_items: "center",
"bib"
"bib"
"bib"
"bib"
"bib"
"bib"
"bib"
"bib"
}
li {
background_color: "blue",
flex_direction: "column",
justify_content: "center",
align_items: "center",
"zib"
"zib"
"zib"
"zib"
"zib"
"zib"
}
p {
background_color: "yellow",
"asd"
}
p {
background_color: "green",
"asd"
}
p {
background_color: "white",
"asd"
}
p {
background_color: "cyan",
"asd"
}
2022-02-12 20:03:08 +00:00
div {
font_weight: "bold",
color: "#666666",
2022-02-17 22:06:28 +00:00
p {
2022-02-12 20:03:08 +00:00
"bold"
}
p {
font_weight: "normal",
" normal"
}
}
p {
font_style: "italic",
color: "red",
"italic"
}
p {
text_decoration: "underline",
2022-02-17 22:06:28 +00:00
color: "rgba(255, 255, 255)",
2022-02-12 20:03:08 +00:00
"underline"
}
p {
text_decoration: "line-through",
2022-02-17 22:06:28 +00:00
color: "hsla(10, 100%, 70%)",
2022-02-12 20:03:08 +00:00
"line-through"
}
2022-02-17 22:06:28 +00:00
div{
position: "absolute",
top: "1px",
background_color: "rgba(255, 0, 0, 50%)",
width: "100%",
p {
color: "rgba(255, 255, 255, {alpha}%)",
background_color: "rgba(100, 100, 100, {alpha}%)",
"rgba(255, 255, 255, {alpha}%)"
}
p {
color: "rgba(255, 255, 255, 100%)",
"rgba(255, 255, 255, 100%)"
}
}
2022-01-01 04:53:37 +00:00
}
})
}