Appium + Hybrid App + React - I can't open native datepicker

referring to below issue

I tried following code but still not able to open date picker

  	WebElement ele = driver.findElement(By.xpath("//*[@id='weddingEventDateSimplifiedDisplay']"));
    
  	Point p = ele.getLocation();
  	Dimension size = ele.getSize();
  	driver.context("NATIVE_APP");
    driver.tap(1,p.x,p.y,2);

Did you find how to test react-native-date-picker ?