mirror of
https://github.com/rive-app/rive-flutter.git
synced 2025-05-17 13:26:03 +08:00

This gives better support for smaller screens and side-by-side windows. Also standardize the formatting check on GitHub on version 17. Diffs= e52e9fff29 Drop the ColumnLimit to 80 for clang-format (#8320) 52913023ba add support for listeners on layout components (#8317) 1b5e50fcec Optimize atomic rendering for input attachments (#8310) 1cc5f2b6f6 Prep for rhi (#8270) f9715435dd Nnnn fix databind state machine shared data context (#8307) 708a913eae Implement isHidden in DrawableProxy (#8302) Co-authored-by: Chris Dalton <99840794+csmartdalton@users.noreply.github.com>
16 lines
434 B
Objective-C
16 lines
434 B
Objective-C
#import "AppDelegate.h"
|
|
#import "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
|