ESP32 | FLUTTER | FIREBASE - Temperature & Humidity Check App

This commit is contained in:
Eric
2019-07-22 00:40:06 -07:00
parent a4597ab575
commit e8b26483f5
65 changed files with 2895 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]));
}
}