@@ -56,6 +56,9 @@ export default class RichTextEditor extends Component {
Keyboard.addListener('keyboardDidShow', this._onKeyboardWillShow),
Keyboard.addListener('keyboardDidHide', this._onKeyboardWillHide)
];
+ if (this.props.autoFocus) {
+ this.webview.requestFocus();
+ }
}