// // ViewController.h // Shared (App) // // Created by Tomek Wójcik on 21/08/2025. // #import #if TARGET_OS_IOS #import typedef UIViewController PlatformViewController; #elif TARGET_OS_OSX #import typedef NSViewController PlatformViewController; #endif @interface ViewController : PlatformViewController @end