File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import {
19
19
TouchableHighlight ,
20
20
RecyclerViewBackedScrollView ,
21
21
ActionSheetIOS ,
22
+ TextInput
22
23
} from 'react-native' ;
23
24
24
25
import Instabug from 'instabug-reactnative' ;
@@ -256,12 +257,18 @@ export default class InstabugSample extends Component {
256
257
render ( ) {
257
258
console . log ( JSON . stringify ( this . state ) ) ;
258
259
return (
260
+ < View >
259
261
< ListView
260
262
dataSource = { this . state . dataSource }
261
263
renderRow = { this . _renderRow . bind ( this ) }
262
264
renderScrollComponent = { props => < RecyclerViewBackedScrollView { ...props } /> }
263
265
style = { styles . listView }
264
266
/>
267
+ < TextInput
268
+ style = { { height : 40 } }
269
+ placeholder = "Type here to translate!"
270
+ />
271
+ </ View >
265
272
) ;
266
273
}
267
274
}
You can’t perform that action at this time.
0 commit comments