feat(networking): add VPN, WiFi, and Wired network pages

This commit is contained in:
Michael Murphy 2024-09-13 21:45:49 +02:00 committed by GitHub
parent d035ba0cf7
commit fa22b556dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 2876 additions and 131 deletions

View file

@ -77,6 +77,11 @@ pub trait Page<Message: 'static>: Downcast {
fn on_leave(&mut self) -> Command<Message> {
Command::none()
}
/// The title to display in the page header.
fn title(&self) -> Option<&str> {
None
}
}
impl_downcast!(Page<Message>);