Files
2019-06-20 15:58:36 +03:00

13 lines
780 B
XML

<Page xmlns:btnCount="ui/lifecycle/pages/button-counter">
<StackLayout>
<!-- This little piggy has just attributes -->
<btnCount:Button id="btn1" borderWidth="1" borderColor="gray" borderRadius="16" fontWeight="bold" fontSize="16" />
<!-- This little piggy has just CSS -->
<btnCount:Button id="btn2" />
<!-- This little piggy has both attributes and CSS -->
<btnCount:Button id="btn3" borderWidth="1" borderColor="gray" borderRadius="16" fontWeight="bold" fontSize="16" />
<!-- This one has it all -->
<btnCount:Button id="btn4" borderRadius="3" style="background-image: url('~/assets/logo.png'); background-position: center; background-repeat: no-repeat; background-size: cover;" />
</StackLayout>
</Page>