Начал разбираться с созданием UI для мобильных приложений с помощью фреймворка Flutter

This commit is contained in:
Ivan Murashov
2017-07-10 19:08:10 +03:00
commit 811ff6f5b9
48 changed files with 1204 additions and 0 deletions

12
ios/Runner/AppDelegate.m Normal file
View File

@@ -0,0 +1,12 @@
#include "AppDelegate.h"
#include "GeneratedPluginRegistrant.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[GeneratedPluginRegistrant registerWithRegistry:self];
// Override point for customization after application launch.
return [super application:application didFinishLaunchingWithOptions:launchOptions];
}
@end