Skip to content

Instantly share code, notes, and snippets.

@ridhof
Created February 25, 2019 13:20
Show Gist options
  • Save ridhof/3a024b5be1651af0d6fba1910e992c95 to your computer and use it in GitHub Desktop.
Save ridhof/3a024b5be1651af0d6fba1910e992c95 to your computer and use it in GitHub Desktop.
var app = new Framework7({
// App root element
root: '#app',
// App Name
name: 'My App',
// App id
id: 'com.myapp.test',
// Enable swipe panel
panel: {
swipe: 'left',
},
theme: 'ios',
view: {
iosDynamicNavbar: false,
},
// Add default routes
routes: [
{
path: '/about/',
url: 'about.html',
},
{
path: '/products/',
url: 'products.html',
},
],
// ... other parameters
});
var mainView = app.views.create('.view-main');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment