@@ -92,6 +92,9 @@ class TextEventsExample extends React.Component<{}, $FlowFixMeState> {
92
92
}
93
93
94
94
class TextInputAccessoryViewExample extends React . Component < { } , * > {
95
+ /* $FlowFixMe(>=0.85.0 site=react_native_ios_fb) This comment suppresses an
96
+ * error found when Flow v0.85 was deployed. To see the error, delete this
97
+ * comment and run Flow. */
95
98
constructor ( props ) {
96
99
super ( props ) ;
97
100
this . state = { text : 'Placeholder Text' } ;
@@ -121,6 +124,9 @@ class TextInputAccessoryViewExample extends React.Component<{}, *> {
121
124
}
122
125
123
126
class RewriteExample extends React . Component < $FlowFixMeProps , any > {
127
+ /* $FlowFixMe(>=0.85.0 site=react_native_ios_fb) This comment suppresses an
128
+ * error found when Flow v0.85 was deployed. To see the error, delete this
129
+ * comment and run Flow. */
124
130
constructor ( props ) {
125
131
super ( props ) ;
126
132
this . state = { text : '' } ;
@@ -153,6 +159,9 @@ class RewriteExampleInvalidCharacters extends React.Component<
153
159
$FlowFixMeProps ,
154
160
any ,
155
161
> {
162
+ /* $FlowFixMe(>=0.85.0 site=react_native_ios_fb) This comment suppresses an
163
+ * error found when Flow v0.85 was deployed. To see the error, delete this
164
+ * comment and run Flow. */
156
165
constructor ( props ) {
157
166
super ( props ) ;
158
167
this . state = { text : '' } ;
@@ -174,6 +183,9 @@ class RewriteExampleInvalidCharacters extends React.Component<
174
183
}
175
184
176
185
class RewriteExampleKana extends React . Component < $FlowFixMeProps , any > {
186
+ /* $FlowFixMe(>=0.85.0 site=react_native_ios_fb) This comment suppresses an
187
+ * error found when Flow v0.85 was deployed. To see the error, delete this
188
+ * comment and run Flow. */
177
189
constructor ( props ) {
178
190
super ( props ) ;
179
191
this . state = { text : '' } ;
@@ -195,6 +207,9 @@ class RewriteExampleKana extends React.Component<$FlowFixMeProps, any> {
195
207
}
196
208
197
209
class SecureEntryExample extends React . Component < $FlowFixMeProps , any > {
210
+ /* $FlowFixMe(>=0.85.0 site=react_native_ios_fb) This comment suppresses an
211
+ * error found when Flow v0.85 was deployed. To see the error, delete this
212
+ * comment and run Flow. */
198
213
constructor ( props ) {
199
214
super ( props ) ;
200
215
this . state = { text : '' } ;
@@ -216,6 +231,9 @@ class SecureEntryExample extends React.Component<$FlowFixMeProps, any> {
216
231
}
217
232
218
233
class TokenizedTextExample extends React . Component < $FlowFixMeProps , any > {
234
+ /* $FlowFixMe(>=0.85.0 site=react_native_ios_fb) This comment suppresses an
235
+ * error found when Flow v0.85 was deployed. To see the error, delete this
236
+ * comment and run Flow. */
219
237
constructor ( props ) {
220
238
super ( props ) ;
221
239
this . state = { text : 'Hello #World' } ;
0 commit comments