pub mod admin; #[cfg(not(feature = "appview"))] pub mod auth; /// The same screens under the same names, for an account that is an atproto one. #[cfg(feature = "appview")] #[path = "auth_atproto.rs"] pub mod auth; pub mod back_to_top; pub mod bin; pub mod comments; pub mod content; pub mod cow; pub mod docx; pub mod editor; pub mod error; pub mod feed; pub mod feedback; pub mod feedback_app; pub mod file; pub mod folder; pub mod game; pub mod graph; pub mod home; pub mod layout; pub mod loader; pub mod map; pub mod member; pub mod node; pub mod odf; pub mod optimistic; pub mod pager; pub mod parent; pub mod pdf; pub mod perm; pub mod pixel; pub mod pptx; pub mod profile; pub mod program; pub mod pull_refresh; pub mod redirect; pub mod render_gaps; pub mod richtext; pub mod screen; pub mod social; pub mod sort; pub mod speak; pub mod widgets; pub mod xlsx; // Accessible form-control primitives (checkbox/radio/switch) wrapping // dioxus-primitives. Their generated code carries some unused API surface. #[allow(dead_code, unused_imports)] pub mod ui; pub mod vote;