flutter/dev/benchmarks/complex_layout/ios/Runner/main.m
Adam Barth 151750baa8 Update the ios projects for examples to HelloServices model (#4822)
We now use a different approach for ios projects where the developer controls
the Xcode project file. This patch removes the old ".generated" approach in
favor of the new approach.
2016-07-06 14:13:21 -07:00

15 lines
460 B
Objective-C

// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import <UIKit/UIKit.h>
#import <Flutter/Flutter.h>
int main(int argc, char * argv[]) {
FlutterInit(argc, (const char**)argv);
@autoreleasepool {
return UIApplicationMain(argc, argv, nil,
NSStringFromClass([FlutterAppDelegate class]));
}
}