94a866b48b
Expo 移动壳使用 SafeAreaProvider 和 SafeAreaView 包裹 WebView 新增安全区边界配置和测试 补充移动壳安全区依赖检查和架构文档
15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
import { describe, expect, test } from 'vitest';
|
|
|
|
import { MOBILE_SHELL_SAFE_AREA_EDGES } from './mobileShellSafeArea';
|
|
|
|
describe('mobile shell safe area', () => {
|
|
test('protects the WebView from every device edge', () => {
|
|
expect(MOBILE_SHELL_SAFE_AREA_EDGES).toEqual([
|
|
'top',
|
|
'right',
|
|
'bottom',
|
|
'left',
|
|
]);
|
|
});
|
|
});
|