This commit is contained in:
nicco
2018-08-30 15:22:42 +02:00
parent 43e7ec90a3
commit 573980b7f4
41 changed files with 1116 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#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]));
}
}