Created flutter base app

This commit is contained in:
Mariano Uvalle 2019-02-20 21:12:32 -06:00
parent 51c6c7815f
commit 0900f5fa29
54 changed files with 1421 additions and 0 deletions

9
ios/Runner/main.m Normal file
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]));
}
}