iOS: Split classes in view.rs into separate files (#3511)

* Move application delegate to its own file
* Move window subclass to window.rs
* Split view controller to separate file
This commit is contained in:
Mads Marquart 2024-02-22 22:28:49 +01:00 committed by GitHub
parent 4a8648be57
commit a127bd6f66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 382 additions and 356 deletions

View file

@ -58,12 +58,14 @@
#![cfg(ios_platform)]
#![allow(clippy::let_unit_value)]
mod app_delegate;
mod app_state;
mod event_loop;
mod ffi;
mod monitor;
mod uikit;
mod view;
mod view_controller;
mod window;
use std::fmt;