ScreenMetrics
NativeScript Angular 2 アプリでアクセスするにはどうすればよいですか?
ScreenMetrics を注入して、Angular の DI システムを使用することになっていますか? Import
ステートメントは問題ありませんが、次は機能しないため、そうではないと思います。コンソールに奇妙なエラーが表示されます。
import { Component } from '@angular/core';
import { ScreenMetrics } from 'platform';
@Component({
selector: 'home',
templateUrl: 'components/home/home.component.html',
})
export class HomeComponent {
constructor(private screenMetrics: ScreenMetrics) {
console.log(screenMetrics);
}
}
残念ながら、ドキュメントはあまり洗練されておらず、ほとんどのコード サンプルは Plain JavaScript コードです。