You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this is not good for styling the modal header if we move ...[textStyle].flat() above ...[modalTitleStyle].flat(), it will work fine and will not overwrite the modalTitleStyle and if the user does not pass modalTitleStyke it will still work as expected
modalTitleStyle props are not working as the textStyle is overwriting it
const _modalTitleStyle = useMemo(
() => [
THEME.modalTitle,
...[modalTitleStyle].flat(),
...[textStyle].flat(),
],
[textStyle, modalTitleStyle, THEME],
);
this is not good for styling the modal header if we move ...[textStyle].flat() above ...[modalTitleStyle].flat(), it will work fine and will not overwrite the modalTitleStyle and if the user does not pass modalTitleStyke it will still work as expected
here is the problem :
react-native-dropdown-picker/src/components/Picker.js
Line 1741 in 09c6364
The text was updated successfully, but these errors were encountered: