mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* fix(android/application): org.nativescript.widgets.Utils::getDrawable * chore: fix spacing * fix(android/application): do not load empty path Co-authored-by: Igor Randjelovic <rigor789@gmail.com> * test: Add tests for empty image sources * chore: add a few more test cases These make the app crash without the fix in place Co-authored-by: Igor Randjelovic <rigor789@gmail.com> Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
26 lines
1.9 KiB
XML
26 lines
1.9 KiB
XML
<Page navigatingTo="navigatingTo">
|
|
<GridLayout>
|
|
<WrapLayout width="220" horizontalAlignment="left" verticalAlignment="top">
|
|
<Image src="~/the-never-found-unicorn.png" margin="1" width="30" height="30" backgroundColor="yellow" />
|
|
<Image src="~/resources/images/no-image.png" margin="1" width="30" height="30" backgroundColor="yellow" />
|
|
|
|
<Image src="~/the-never-found-unicorn.png" margin="1" width="30" height="30" backgroundColor="yellow" borderRadius="10" />
|
|
<Image src="~/resources/images/no-image.png" margin="1" width="30" height="30" backgroundColor="yellow" borderRadius="10" />
|
|
|
|
<Image src="~/the-never-found-unicorn.png" margin="1" width="30" height="30" backgroundColor="yellow" borderRadius="5 10 15 20" />
|
|
<Image src="~/resources/images/no-image.png" margin="1" width="30" height="30" backgroundColor="yellow" borderRadius="5 10 15 20" />
|
|
|
|
<Image src="res://theneverfoundunicorn.png" margin="1" width="30" height="30" backgroundColor="yellow" />
|
|
<Image src="res://testlogo" margin="1" width="30" height="30" backgroundColor="yellow" />
|
|
<Image src="res://" margin="1" width="30" height="30" backgroundColor="yellow" />
|
|
<Image src="null" margin="1" width="30" height="30" backgroundColor="yellow" />
|
|
|
|
<Image src="res://theneverfoundunicorn.png" margin="1" width="30" height="30" backgroundColor="yellow" borderRadius="10" />
|
|
<Image src="res://testlogo" margin="1" width="30" height="30" backgroundColor="yellow" borderRadius="10" />
|
|
|
|
<Image src="res://theneverfoundunicorn.png" margin="1" width="30" height="30" backgroundColor="yellow" borderRadius="5 10 15 20" />
|
|
<Image src="res://testlogo" margin="1" width="30" height="30" backgroundColor="yellow" borderRadius="5 10 15 20" />
|
|
</WrapLayout>
|
|
</GridLayout>
|
|
</Page>
|