标签: angular ionic-framework direction angular8
在angular 8 Web应用程序项目中,离子platform.setDir()的等效项是什么?
platform.setDir()
当用户更改应用程序的默认语言(包括侧面菜单和工具栏)时,我正在尝试更改整个应用程序的方向。
通常在Ionic中,我会像下面这样:
import { Platform } from ionic-angular;`
import { Platform } from
,然后使用以下功能对其进行更改:
onlangChange() { ... this.platform.setDir('rtl', true); }