File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -566,6 +566,7 @@ export default class Drawer extends Component {
566
566
key = "drawerContainer"
567
567
onLayout = { this . handleSetViewport }
568
568
style = { this . stylesheet . container }
569
+ { ...this . props . containerProps }
569
570
>
570
571
{ first }
571
572
{ second }
@@ -580,6 +581,7 @@ export default class Drawer extends Component {
580
581
key = "main"
581
582
ref = { c => this . main = c }
582
583
style = { [ this . stylesheet . main , { height : this . getMainHeight ( ) , width : this . getMainWidth ( ) } ] }
584
+ { ...this . props . mainProps }
583
585
>
584
586
{ this . props . children }
585
587
< View
@@ -599,6 +601,7 @@ export default class Drawer extends Component {
599
601
ref = { c => this . drawer = c }
600
602
elevation = { this . props . elevation }
601
603
style = { [ this . stylesheet . drawer , { height : this . getDrawerHeight ( ) , width : this . getDrawerWidth ( ) } ] }
604
+ { ...this . props . drawerProps }
602
605
>
603
606
{ this . props . content }
604
607
< View
You can’t perform that action at this time.
0 commit comments