소스 검색

Save buttons props for root screens

Guy Carmeli 7 년 전
부모
커밋
3e717161ab
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5
    0
      src/deprecated/platformSpecificDeprecated.android.js

+ 5
- 0
src/deprecated/platformSpecificDeprecated.android.js 파일 보기

@@ -546,6 +546,11 @@ function addNavigatorButtons(screen, sideMenuParams) {
546 546
       if (button.buttonColor) {
547 547
         button.color = processColor(button.buttonColor);
548 548
       }
549
+      if (button.component) {
550
+        const passPropsKey = _.uniqueId('customButtonComponent');
551
+        PropRegistry.save(passPropsKey, button.passProps);
552
+        button.passProps = {passPropsKey};
553
+      }
549 554
     });
550 555
   }
551 556