Nativescript,iOS,在 CSS 中将图像设置为背景无效
Nativescript, iOS, setting image as background in CSS not working
在我的 nativescript 应用程序中,我想使用
将图像设置为背景
background-image: url("res://ic_more")
它适用于 Android,但不适用于 iOS。
此图像存在于 App_Resources/iOS 文件夹中:
我什至可以像这样在 Image
中使用它(红色箭头):
<Image src="res://ic_more"></Image>
问题出在 CSS 我相信。
已经尝试过:
tns platform clean ios
感谢任何帮助
使用此代码在 android 和 iOS 中设置背景图像。
<DockLayout stretchLastChild="false">
<GridLayout rows="*,*" class="page" backgroundImage="~/app/images/home_bg.jpg" backgroundRepeat="no-repeat" backgroundSize="cover" backgroundPosition="center">
</GridLayout>
</DockLayout>
在我的 nativescript 应用程序中,我想使用
将图像设置为背景background-image: url("res://ic_more")
它适用于 Android,但不适用于 iOS。
此图像存在于 App_Resources/iOS 文件夹中:
我什至可以像这样在 Image
中使用它(红色箭头):
<Image src="res://ic_more"></Image>
问题出在 CSS 我相信。
已经尝试过:
tns platform clean ios
感谢任何帮助
使用此代码在 android 和 iOS 中设置背景图像。
<DockLayout stretchLastChild="false">
<GridLayout rows="*,*" class="page" backgroundImage="~/app/images/home_bg.jpg" backgroundRepeat="no-repeat" backgroundSize="cover" backgroundPosition="center">
</GridLayout>
</DockLayout>