Does the Settings screen is scrollable as parent element?

Hello
I want to scroll at the settings to BT configuration in my system, the settings screen is not scrollable element - itself, so my option to use the method is not working, does the settings screen is not scrollable element as parent and into it suppose to be option to scroll?
the main question is on the “XCUIElementTypeScrollView” element

something like these:

`
public void iOSScrollToElement() {

  RemoteWebElement element =(RemoteWebElement)driver.findElement(By.className("XCUIElementTypeScrollView"));
  String elementID = element.getId();
  HashMap<String, String> scrollObject = new HashMap<String, String>();
  scrollObject.put("element", "paranetID");
  scrollObject.put("PredicateString", "label == 'Bluetooth' AND name == 'Bluetooth'");
  scrollObject.put("toVisible", "sdfnjksdnfkld");
  getDriver().executeScript("mobile:scroll", scrollObject); }

`

also I saw that its scroll to the element but it never stops to scroll… It doesn’t do the click option that I have just right after these.