更新readme文档

This commit is contained in:
宫欣海
2025-02-26 15:10:04 +08:00
parent e2ab03b997
commit b124dc37d2
17 changed files with 1601 additions and 1606 deletions

18
docs/Screen.md Normal file
View File

@@ -0,0 +1,18 @@
## 屏幕
```typescript
/** 屏幕宽度 */
public static ScreenWidth: number;
/** 屏幕高度 */
public static ScreenHeight: number;
/** 设计分辨率宽 */
public static DesignWidth: number;
/** 设计分辨率高 */
public static DesignHeight: number;
/** 安全区外一侧的高度 或 宽度 */
public static SafeAreaHeight: number;
/** 安全区的宽度 */
public static SafeWidth: number;
/** 安全区的高度 */
public static SafeHeight: number;
```