Procházet zdrojové kódy

Adding style props to main container.

Matheus Stefanello Luz před 6 roky
rodič
revize
4deb26c383
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      src/index.js

+ 1
- 1
src/index.js Zobrazit soubor

@@ -259,7 +259,7 @@ export default class ViewShot extends Component {
259 259
   render() {
260 260
     const { children } = this.props;
261 261
     return (
262
-      <View ref={this.onRef} collapsable={false} onLayout={this.onLayout}>
262
+      <View ref={this.onRef} collapsable={false} onLayout={this.onLayout} style={this.props.style}>
263 263
         {children}
264 264
       </View>
265 265
     );