mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
8219db9a4a
Summary: This is the partial implementation of Fabric-compatible <TextInput> component on iOS. All features are supported besides those: * `focus()`, `blur()`, `clear()` imperative calls; * Controlled TextInput as the whole feature in general; * Controlling selection from JavaScript side; * `autoFocus` prop; * KeyboardAccessoryView. Changelog: [Internal] Reviewed By: JoshuaGross Differential Revision: D17400907 fbshipit-source-id: 0ccd0e0923293e5f504d5fae7b7ba9f048f7d259
22 lines
419 B
Objective-C
22 lines
419 B
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTViewComponentView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* UIView class for <TextInput> component.
|
|
*/
|
|
@interface RCTTextInputComponentView : RCTViewComponentView
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|