Explorar el Código

fix(ios) fix drag handle not rendering with latest react-native-svg

Fill must be properly specified.
master
Saúl Ibarra Corretgé hace 4 años
padre
commit
dc5a776123

+ 0
- 4
react/features/base/dialog/components/native/styles.js Ver fichero

171
         underlayColor: ColorPalette.overflowMenuItemUnderlay
171
         underlayColor: ColorPalette.overflowMenuItemUnderlay
172
     },
172
     },
173
 
173
 
174
-    expandIcon: {
175
-        color: schemeColor('icon')
176
-    },
177
-
178
     /**
174
     /**
179
      * Bottom sheet's base style.
175
      * Bottom sheet's base style.
180
      */
176
      */

+ 3
- 2
react/features/toolbox/components/native/OverflowMenu.js Ver fichero

166
                     styles.expandMenuContainer
166
                     styles.expandMenuContainer
167
                 ] }>
167
                 ] }>
168
                 <TouchableOpacity onPress = { this._onToggleMenu }>
168
                 <TouchableOpacity onPress = { this._onToggleMenu }>
169
-                    { /* $FlowFixMeProps */ }
170
-                    <IconDragHandle style = { this.props._bottomSheetStyles.expandIcon } />
169
+                    { /* $FlowFixMe */ }
170
+                    <IconDragHandle
171
+                        fill = { this.props._bottomSheetStyles.buttons.iconStyle.color } />
171
                 </TouchableOpacity>
172
                 </TouchableOpacity>
172
             </View>
173
             </View>
173
         );
174
         );

Loading…
Cancelar
Guardar