Add border-radius text page.

https://github.com/NativeScript/NativeScript/issues/777
This commit is contained in:
Vasil Chimev
2015-09-23 18:51:47 +03:00
parent ed1c632ea3
commit c07ac6c30a
4 changed files with 14 additions and 3 deletions

View File

@ -382,7 +382,7 @@
<TypeScriptCompile Include="apps\ui-tests-app\layouts\myview.ts" />
<TypeScriptCompile Include="apps\ui-tests-app\layouts\stack.ts" />
<TypeScriptCompile Include="apps\ui-tests-app\layouts\wrap.ts" />
<TypeScriptCompile Include="apps\ui-tests-app\pages\background.ts">
<TypeScriptCompile Include="apps\ui-tests-app\css\background.ts">
<DependentUpon>background.xml</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="apps\ui-tests-app\pages\console.ts" />
@ -960,7 +960,10 @@
<Content Include="apps\tests\xml-declaration\mymodulewithxml\MyControl.css" />
<Content Include="apps\tests\xml-declaration\mymodule\MyControl.css" />
<Content Include="apps\ui-tests-app\bindings\xmlbasics.xml" />
<TypeScriptCompile Include="apps\ui-tests-app\css\styles.ts" />
<TypeScriptCompile Include="apps\ui-tests-app\css\styles.ts">
<DependentUpon>styles.xml</DependentUpon>
</TypeScriptCompile>
<Content Include="apps\ui-tests-app\css\radius.xml" />
<Content Include="apps\ui-tests-app\css\import.css" />
<Content Include="apps\ui-tests-app\css\styles.css" />
<Content Include="apps\ui-tests-app\css\styles.xml" />
@ -973,7 +976,7 @@
<Content Include="apps\ui-tests-app\layouts\grid.xml" />
<Content Include="apps\ui-tests-app\layouts\stack.xml" />
<Content Include="apps\ui-tests-app\layouts\wrap.xml" />
<Content Include="apps\ui-tests-app\pages\background.xml" />
<Content Include="apps\ui-tests-app\css\background.xml" />
<Content Include="apps\ui-tests-app\image-view\roundbtn.xml" />
<Content Include="apps\ui-tests-app\pages\handlers.xml" />
<Content Include="apps\ui-tests-app\pages\htmlview.xml" />

View File

@ -0,0 +1,8 @@
<Page>
<StackLayout>
<TextView text="TextView" borderRadius="17" backgroundColor="lightpink"/>
<TextField text="TextField" borderRadius="29" backgroundColor="lightsalmon"/>
<Button text="Button" borderRadius="41" backgroundColor="lightcoral"/>
<Label text="Label" borderRadius="53" backgroundColor="lightgreen"/>
</StackLayout>
</Page>