跳到主要内容

useWindowInfo

警告

更推荐大家使用useSystemInfo. 所有的信息均可获取到

获取窗口信息

何时使用

当需要获取窗口信息做一些判断时

API

const windowInfo = useWindowInfo();

参数说明

返回值说明

windowInfo

参数类型说明
pixelRationumber设备像素比
screenWidthnumber屏幕宽度,单位 px
screenHeightnumber屏幕高度,单位 px
windowWidthnumber可使用窗口宽度,单位 px
windowHeightnumber可使用窗口高度,单位 px
statusBarHeightnumber状态栏的高度,单位 px
safeAreaTaroGeneral.SafeAreaResult在竖屏正方向下的安全区域

代码演示

basic/useWindowInfo/index
import React from 'react';
import DemoContent from '@src/components/DemoContent';
import { Cell } from '@taroify/core';
import { useWindowInfo } from 'taro-hooks';

export default () => {
const windowInfo = useWindowInfo();

return (
<DemoContent>
<Cell.Group clickable>
{Object.entries(windowInfo!).map(([key, value]) => (
<Cell key={key} title={key} brief={JSON.stringify(value)}></Cell>
))}
</Cell.Group>
</DemoContent>
);
};

Hook 支持度

微信小程序H5ReactNative
✔️✔️✔️