12345678910111213141516171819 |
- //
- // iOSPluginRegistrant.m
- // Runner
- //
- // Created by ss on 2024/9/9.
- //
- #import "iOSPluginRegistrant.h"
- #import "IosTexturePlugin.h"
- @implementation iOSPluginRegistrant
- + (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
- [IosTexturePlugin registerWithRegistrar:[registry registrarForPlugin:@"IosTexturePlugin"]];
- }
- @end
|