public static void scrollios(String move){
//down,up,left,right
JavascriptExecutor js = (JavascriptExecutor) driver;
HashMap scrollObject = new HashMap();
scrollObject.put("direction", move);
js.executeScript("mobile: scroll", scrollObject);
}
Inside the move parameter mention the direction:up, down,right and left