Include test page for issue 4143

This commit is contained in:
SvetoslavTsenov
2017-05-18 13:47:42 +03:00
parent 90a0da2863
commit d6d016bc61
3 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,6 @@
.bg-background {
background-image: url("~/ui-tests-app/image-view/gravatar.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

View File

@ -0,0 +1,6 @@
<Page xmlns="http://schemas.nativescript.org/tns.xsd">
<FlexboxLayout flexDirection="column" class="legend-wrapper bg-background" flexGrow="1">
<Label text="TyFitt" class="title"></Label>
<Label text="Workout is a life style." class="legend"></Label>
</FlexboxLayout>
</Page>

View File

@ -14,6 +14,7 @@ export function pageLoaded(args: EventData) {
examples.set("flexboxdemo", "flexbox/flexbox-demo");
examples.set("flexrepeat", "flexbox/flexbox-repeater");
examples.set("flex-perf", "flexbox/flexbox-perf-comparison");
examples.set("flexbox-4143", "flexbox/flexbox-4143");
let viewModel = new FlexboxMainPageViewModel(wrapLayout, examples);
page.bindingContext = viewModel;