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 {
1919 TouchableHighlight ,
2020 RecyclerViewBackedScrollView ,
2121 ActionSheetIOS ,
22+ TextInput
2223} from 'react-native' ;
2324
2425import Instabug from 'instabug-reactnative' ;
@@ -256,12 +257,18 @@ export default class InstabugSample extends Component {
256257 render ( ) {
257258 console . log ( JSON . stringify ( this . state ) ) ;
258259 return (
260+ < View >
259261 < ListView
260262 dataSource = { this . state . dataSource }
261263 renderRow = { this . _renderRow . bind ( this ) }
262264 renderScrollComponent = { props => < RecyclerViewBackedScrollView { ...props } /> }
263265 style = { styles . listView }
264266 />
267+ < TextInput
268+ style = { { height : 40 } }
269+ placeholder = "Type here to translate!"
270+ />
271+ </ View >
265272 ) ;
266273 }
267274}
You can’t perform that action at this time.
0 commit comments