mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
65e4deba15
This reverts commit a48b5f6d25.
19 lines
761 B
Objective-C
19 lines
761 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.
|
|
|
|
#ifndef SHELL_PLATFORM_IOS_FRAMEWORK_SOURCE_FLUTTERTEXTINPUTPLUGIN_H_
|
|
#define SHELL_PLATFORM_IOS_FRAMEWORK_SOURCE_FLUTTERTEXTINPUTPLUGIN_H_
|
|
|
|
#include "flutter/shell/platform/darwin/ios/framework/Headers/FlutterChannels.h"
|
|
#include "flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputDelegate.h"
|
|
|
|
@interface FlutterTextInputPlugin : NSObject
|
|
|
|
@property(nonatomic, assign) id<FlutterTextInputDelegate> textInputDelegate;
|
|
- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result;
|
|
|
|
@end
|
|
|
|
#endif // SHELL_PLATFORM_IOS_FRAMEWORK_SOURCE_FLUTTERTEXTINPUTPLUGIN_H_
|