[SOLVED] IOS theme V2 not working

Hi

I try use ios theme on my app, but in v2 only start Material theme, when in use framework7.ios.css my browser only show html.

Check your code, path to files, etc. All works.

look at the theme param where you make "new Framework7()"
you switch it like

var app = new Framework7({
root: ‘#app’,
theme: ‘ios’
});

or

var app = new Framework7({
root: ‘#app’,
theme: ‘auto’
});

or

var app = new Framework7({
root: ‘#app’,
theme: ‘md’
});

Thanks, work fine now.