Small button area in navbar on ios. With real use cases, it’s very difficult to hit the button.

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest Detox and report back. Thank you for your contributions.
not stale
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest Detox and report back. Thank you for your contributions.
Not stale
not stale. have issues with left button / back button as well
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest version and report back. Thank you for your contributions.
not stale
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest version and report back. Thank you for your contributions.
not stale lol
not stale.
FWIW - I have a post install patch that fixes the issue for me, its just annoying to have to make my own edits to this: ./node_modules/react-native-navigation/lib/ios/RNNUIBarButtonItem.m
-(instancetype)init:(NSString*)buttonId withIcon:(UIImage*)iconImage {
// UIButton* button = [[UIButton alloc] init];
// [button addTarget:self action:@selector(onButtonPressed) forControlEvents:UIControlEventTouchUpInside];
// [button setImage:iconImage forState:UIControlStateNormal];
// [button setFrame:CGRectMake(0, 0, iconImage.size.width + 40, iconImage.size.height + 20)];
// self = [super initWithCustomView:button];
// self.buttonId = buttonId;
// button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
self = [super initWithImage:iconImage style:UIBarButtonItemStylePlain target:self action:@selector(onButtonPressed)];
self.buttonId = buttonId;
return self;
}
@sorokin0andrey lmk if this works for you and hopefully if its legit the wix team can get this changed in the source
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest version and report back. Thank you for your contributions.
Not stale
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest version and report back. Thank you for your contributions.
Not stale
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest version and report back. Thank you for your contributions.
Duplicate of #5000 , PR at #6482