#ifndef PLATFORM_IOS_FRAMEWORK_SOURCE_UIWIDGETSTEXTINPUTPLUGIN_H_ #define PLATFORM_IOS_FRAMEWORK_SOURCE_UIWIDGETSTEXTINPUTPLUGIN_H_ #import #include "UIWidgetsTextInputDelegate.h" @interface UIWidgetsTextInputPlugin : NSObject @property(nonatomic, assign) id textInputDelegate; - (UIView*)textInputView; @end @interface UIWidgetsTextPosition : UITextPosition @property(nonatomic, readonly) NSUInteger index; + (instancetype)positionWithIndex:(NSUInteger)index; - (instancetype)initWithIndex:(NSUInteger)index; @end @interface UIWidgetsTextRange : UITextRange @property(nonatomic, readonly) NSRange range; + (instancetype)rangeWithNSRange:(NSRange)range; @end #endif // PLATFORM_IOS_FRAMEWORK_SOURCE_UIWIDGETSTEXTINPUTPLUGIN_H_