diff --git a/docs/next/native-modules-ios.html b/docs/next/native-modules-ios.html index 4f1a9685f2f..218acfd0454 100644 --- a/docs/next/native-modules-ios.html +++ b/docs/next/native-modules-ios.html @@ -111,7 +111,7 @@ RCT_EXPORT_METHOD(addEvent:(NSString *)name l @end -
Now, from your JavaScript file you can call the method like this:
+Now, from your JavaScript file you can call the method like this (after making sure to rebuild):
import {NativeModules} from 'react-native';
var CalendarManager = NativeModules.CalendarManager;
CalendarManager.addEvent('Birthday Party', '4 Privet Drive, Surrey');
diff --git a/docs/next/native-modules-ios/index.html b/docs/next/native-modules-ios/index.html
index 4f1a9685f2f..218acfd0454 100644
--- a/docs/next/native-modules-ios/index.html
+++ b/docs/next/native-modules-ios/index.html
@@ -111,7 +111,7 @@ RCT_EXPORT_METHOD(addEvent:(NSString *)name l
@end
-Now, from your JavaScript file you can call the method like this:
+Now, from your JavaScript file you can call the method like this (after making sure to rebuild):
import {NativeModules} from 'react-native';
var CalendarManager = NativeModules.CalendarManager;
CalendarManager.addEvent('Birthday Party', '4 Privet Drive, Surrey');
diff --git a/docs/next/textinput.html b/docs/next/textinput.html
index 729dca1c0ee..8dcd68e1d26 100644
--- a/docs/next/textinput.html
+++ b/docs/next/textinput.html
@@ -903,7 +903,8 @@ In order to create a valid string for PasswordRules take a look to
enum('simple', 'highQuality', 'balanced') No Android
-
+
+
underlineColorAndroid
The color of the TextInput underline.
@@ -949,7 +950,7 @@ In order to create a valid string for PasswordRules take a look to
react-native#19366: Calling .focus() after closing Android's keyboard via back button doesn't bring keyboard up again.
react-native#26799: Doesn't support Android's secureTextEntry when keyboardType="email-address" or keyboardType="phone-pad".
-