Retrieves an array containing all of the views currently attached to a platform window.
Example
const win = fin.Window.getCurrentSync();
win.getCurrentViews()
.then(views => console.log(views))
.catch(console.error);
Retrieves an array containing all of the views currently attached to a platform window.
const win = fin.Window.getCurrentSync();
win.getCurrentViews()
.then(views => console.log(views))
.catch(console.error);