mirror of
https://github.com/rive-app/rive-flutter.git
synced 2025-08-23 16:10:23 +08:00

Diffs= 960d8be2a1 fix flutter tests (#8429) c64659be84 Make build script work on mac (#8421) 8178dd7936 fix for imagediff avrg being wrong (#8430) 7a9e69314d Fix resources getting deleted prematurely in vkutil::ResourcePool (#8411) 5cde901062 Upgrade legacy artboards to work with layouts (#8419) aec431eeb7 Layout fractional sizes & flexBasis (#8405) a02ac789ca imagediff -> opencv (#8397) 4fec171eac Fix crash on controlSize when image not yet available (#8414) Co-authored-by: Luigi Rosso <luigi-rosso@users.noreply.github.com>
14 lines
391 B
Swift
14 lines
391 B
Swift
import Flutter
|
|
import UIKit
|
|
|
|
@main
|
|
@objc class AppDelegate: FlutterAppDelegate {
|
|
override func application(
|
|
_ application: UIApplication,
|
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
|
) -> Bool {
|
|
GeneratedPluginRegistrant.register(with: self)
|
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
|
}
|
|
}
|