如何在Nativescript Angular Mobile App中根据设备宽度分配不同的CSS文件

时间:2019-11-22 10:30:56

标签: nativescript angular2-nativescript nativescript-angular

我正在尝试NativeScript-Platform-CSSNativeScript FontScale pluggins,但不支持。

nativescript angular有什么办法做吗?

1 个答案:

答案 0 :(得分:0)

这可以通过以下方式完成:-

@media screen and (max-width: 1024px){

@import url('assets/css/myStyle.css');

}
@media screen and (max-width: 768px){

@import url('assets/css/myStyle2.css');

}