Original Question: Just trying to find out if you can add an action bar through code in Nativescript JS And if so, How would you go about it?
New Question: So the following code loads the actionbar dynamically:
var actionB = require("tns-core-modules/ui/action-bar).ActionBar;
var actB = new actionB();
actB.title = "Action Bar";
actB.id = "actionID"
page.content = actB;
Now I just need to know how would I load navigation item and action item for android and ios
Thanks