import type { SafeAreaInsets } from '../../type'; /** * Web fallback: browsers do not expose per-edge system insets, so we * return an all-zero inset object. This mirrors the behaviour of the * original aldenui hook and keeps parity with the native build-time * contract so platform-shared code never has to branch on `Platform`. */ const useSafeAreaInset = (): Required => { return { top: 0, bottom: 0, left: 0, right: 0, }; }; export default useSafeAreaInset;