mirror of
https://github.com/rive-app/rive-flutter.git
synced 2025-09-21 23:35:42 +08:00

Also update the auto formatter to run on *.m and *.mm files, and effectively ban breaking on return types entirely, as I think this is ugly. Diffs= c7d125c7d Update ObjC formatting to look more similar to the C++
12 lines
238 B
Objective-C
12 lines
238 B
Objective-C
#import <Flutter/Flutter.h>
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
@autoreleasepool
|
|
{
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|