Jef Vandooren
Jef Vandooren
As the CLI adds defaults eg:` localesDir: "."`, it makes more sense that the config file is the overwriting truth, no? If we do want the CLI to overwrite the...
I looked into this I don't think this is something we can "fix" ourselves, as we get a 200 OK result back from the push. A workaround is that we...
Looks good to me, what do you think @robrechtme ?
Tested the patch, solved the issue on our end
``` diff --git a/node_modules/@react-native-segmented-control/segmented-control/js/SegmentedControl.js b/node_modules/@react-native-segmented-control/segmented-control/js/SegmentedControl.js index 99bdc2e..488e1b4 100644 --- a/node_modules/@react-native-segmented-control/segmented-control/js/SegmentedControl.js +++ b/node_modules/@react-native-segmented-control/segmented-control/js/SegmentedControl.js @@ -44,6 +44,7 @@ const SegmentedControl = ({ const animation = React.useRef(new Animated.Value(0)).current; const handleChange = (index: number)...
This broke initially open collapsibles
@farhoudshapouran this feels like a necessary adjustment of the onMonthChange function. Can you please review and merge this PR?
Hi there, Just had a similar issue in our codebase where we wanted to prevent/revert the switching to a tab in onChange. I adjusted our implementation for your useCase. It...