hi
we are using few app config only for android and few for iOS only.
is there a way to get them together in single app.js?
eg.
for iOS we use this
var app = new Framework7({
id: projectID,
root: ‘#app’,
theme: theme,
statusbar: {
enabled: true,
overlay :true
},
input : {
scrollIntoViewAlways:true,
scrollIntoViewOnFocus: true,
scrollIntoViewCentered: true
},
});
for android we use this
var app = new Framework7({
id: projectID,
root: ‘#app’,
theme: theme,
statusbar: {
enabled: true,
overlay :false,
androidOverlaysWebView: false
},
touch: {
tapHold: true, //enable tap hold events
disableContextMenu: false
},
input : {
scrollIntoViewAlways:true,
scrollIntoViewOnFocus: true,
scrollIntoViewCentered: true
},
});
we need
touch: {
tapHold: true, //enable tap hold events
disableContextMenu: false
},
only for android,
is there a way to configure this in the app.js?
please help.
thank you