Force Preloader to use MD/Android Theme

I would like to use the preloader in my app but I prefer the “circle” loading icon to be used for both IOS and android. Is there a way to force it to use the circle icon by default? Thanks

1 Like

https://framework7.io/docs/utils.html#preloadercontent

I read the docs, but it doesnt give an indication of how I can force MD theme for the preloader only even on IOS devices but keep everything else using the auto theme. Is this possible?

It won’t work like that

Or will like so (by wrapping it with .md element):

<div class="md">
<div class="preloader">
  <span class="preloader-inner">
    <span class="preloader-inner-gap"></span>
    <span class="preloader-inner-left">
        <span class="preloader-inner-half-circle"></span>
    </span>
    <span class="preloader-inner-right">
        <span class="preloader-inner-half-circle"></span>
    </span>
  </span>
</div>
</div>