the champ
This commit is contained in:
parent
2ca2698cb7
commit
bbe05b3be8
4 changed files with 1192 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -6,4 +6,5 @@
|
|||
# These are backup files generated by rustfmt
|
||||
**/*.rs.bk
|
||||
|
||||
.direnv
|
||||
.direnv
|
||||
.dioxus
|
1171
assets/tailwind.css
Normal file
1171
assets/tailwind.css
Normal file
File diff suppressed because it is too large
Load diff
|
@ -69,6 +69,7 @@
|
|||
gst_all_1.gst-vaapi
|
||||
gst_all_1.gstreamer
|
||||
webkitgtk_4_1
|
||||
xdotool
|
||||
ffmpeg-full
|
||||
# yt-dlp
|
||||
|
||||
|
|
18
src/ui/presenter.rs
Normal file
18
src/ui/presenter.rs
Normal file
|
@ -0,0 +1,18 @@
|
|||
#![allow(non_snake_case)]
|
||||
use dioxus::prelude::*;
|
||||
use dioxus_logger::tracing::info;
|
||||
|
||||
use crate::ui::video::VideoEl;
|
||||
|
||||
#[component]
|
||||
pub fn Presenter() -> Element {
|
||||
rsx!(
|
||||
div {
|
||||
class: "flex",
|
||||
p { class: "my-10 flex-center",
|
||||
"The Presenter"
|
||||
}
|
||||
VideoEl { }
|
||||
}
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue