Initial commit

This commit is contained in:
Arjun Patel
2019-05-23 18:22:34 -07:00
commit 59f966b44c
59 changed files with 1569 additions and 0 deletions
+9
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]));
}
}