Original issue posted by @rclai
<Page xmlns="http://www.nativescript.org/tns.xsd" loaded="onLoaded">
<Page.actionBar>
<ActionBar title="{{ customTitle }}" />
</Page.actionBar>
<StackLayout>
<Label text="blah1" />
<Label text="blah2" />
<Label text="blah3" />
</StackLayout>
</Page>
var Observable = require('data/observable').Observable;
var viewModel = new Observable({ customTitle: 'hello??' });
exports.onLoaded = function(args) {
args.object.bindingContext = viewModel;
};
My stack layout (shown above) ends up getting overlapped by the action bar instead of going below the action bar.
This is {N} 1.4.3 in the browser-based Telerik Platform.
Original issue posted by @rclai
My stack layout (shown above) ends up getting overlapped by the action bar instead of going below the action bar.
This is {N} 1.4.3 in the browser-based Telerik Platform.