feat: chat

feat: android setup
This commit is contained in:
2024-10-16 20:23:52 +01:00
parent f0a50918a8
commit 6017ce18d4
28 changed files with 556 additions and 146 deletions

View File

@ -3,10 +3,12 @@ mod chat;
mod chat_message;
mod header;
mod profile;
mod stream;
mod stream_tile;
mod stream_list;
mod stream_player;
mod video_placeholder;
mod stream_title;
mod write_chat;
use crate::route::RouteServices;
use egui::{Response, Ui};
@ -22,3 +24,5 @@ pub use self::profile::Profile;
pub use self::stream_list::StreamList;
pub use self::stream_player::StreamPlayer;
pub use self::video_placeholder::VideoPlaceholder;
pub use self::stream_title::StreamTitle;
pub use self::write_chat::WriteChat;