Relative position searchbar

Is there a way to have a searchbar relative to the searchbar component on a page.
Im using Svelte specifically.

I dont want the searchbar to be positioned to the top of the page. I would like to it appear anywhere on the page for example below a BlockTitle or currently I have multiple lists on a page and I would like a searchbar above each list.

Just put it in a required place and add f7Slot="static" prop on it:

<Page>

  <List>...</List>
  <Searchbar f7Slot="static" ... />

</Page>

Thank you.
Works perfectly.