(&mut self, popup: &PopupType)
| 88 | /// Remove a specific popup type from the stack (for when popup is closed directly) |
| 89 | #[allow(dead_code)] |
| 90 | pub fn remove(&mut self, popup: &PopupType) { |
| 91 | self.stack.retain(|p| p != popup); |
| 92 | } |
| 93 | |
| 94 | /// Get the previous popup (for navigation back) |
| 95 | #[allow(dead_code)] |
no outgoing calls
no test coverage detected