mirror of
https://github.com/inventree/inventree-app.git
synced 2025-08-12 07:20:50 +00:00
.github
android
assets
ios
Flutter
Runner
Assets.xcassets
Base.lproj
AppDelegate.h
AppDelegate.m
Info.plist
main.m
Runner.xcodeproj
Runner.xcworkspace
Podfile
lib
res
test
.gitignore
.gitmodules
.metadata
BUILDING.md
LICENSE
README.md
analysis_options.yaml
crowdin.yml
find_dart_files.py
l10n.yaml
pubspec.lock
pubspec.yaml
requirements.txt
tasks.py
10 lines
226 B
Objective-C
10 lines
226 B
Objective-C
#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]));
|
|
}
|
|
}
|