()
| 17 | use iced::widget::{column, scrollable}; |
| 18 | |
| 19 | fn main() -> iced::Result { |
| 20 | iced::application(App::new, App::update, App::view) |
| 21 | .font(include_bytes!("fonts/FiraCodeNerdFont-Regular.ttf")) |
| 22 | .default_font(iced::Font::with_name("FiraCode Nerd Font")) |
| 23 | .run() |
| 24 | } |
| 25 | |
| 26 | struct App { |
| 27 | s1_id: ShapeId, |
nothing calls this directly
no outgoing calls
no test coverage detected