| 6 | use super::Component; |
| 7 | |
| 8 | pub struct View { |
| 9 | children: Vec<Box<dyn Component>>, |
| 10 | style: Style, |
| 11 | layout: Layout, |
| 12 | bounds: Rect, |
| 13 | } |
| 14 | |
| 15 | impl View { |
| 16 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected