| 8 | |
| 9 | #[allow(dead_code)] |
| 10 | pub struct ResponsiveLayout { |
| 11 | breakpoints: Vec<(f32, Breakpoint)>, |
| 12 | current: Breakpoint, |
| 13 | } |
| 14 | |
| 15 | impl ResponsiveLayout { |
| 16 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected