Add XML Parsing

This commit is contained in:
Michael Mikovsky
2025-10-30 14:44:41 -06:00
parent 2cbf0fcab2
commit 48067c3eef
13 changed files with 274 additions and 46 deletions
+6
View File
@@ -42,6 +42,12 @@ impl View for VerticalLayout {
}
}
fn resize(&mut self, x: f32, y: f32, w: f32, h: f32) {}
fn from_tag(attributes: &std::collections::HashMap<String, String>) -> Self
where
Self: Sized,
{
todo!()
}
}
impl LayoutView for VerticalLayout {