fix(core): stack layout padding (#9183)

fixes #8810
This commit is contained in:
Ben Delaney
2021-01-31 04:45:59 +11:00
committed by Nathan Walker
parent 3bd2d96f29
commit a12c188d0f
13 changed files with 24 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
<Page>
<ActionBar title="issue-8810"></ActionBar>
<StackLayout
orientation="horizontal"
verticalAlignment="center"
horizontalAlignment="center"
padding="30"
borderWidth="1">
<Label
text="Play with NativeScript!"
borderWidth="1"/>
</StackLayout>
</Page>

View File

@@ -33,6 +33,7 @@ export function loadExamples() {
examples.set('6439', 'issues/issue-6439-page');
examples.set('open-file-6895', 'issues/open-file-6895-page');
examples.set("7469", "issues/issue-7469-page");
examples.set('8810', 'issues/issue-8810-page');
return examples;
}