/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/new-app-screen/src/index.d.ts
24 строки
558 B
Alex Hunt
Add optional safeAreaInsets prop to NewAppScreen (replacing SafeAreaView) (#52507)
09 июл 2025, 18:26
09 июл 2025, 18:26
732bd12
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ import type * as React from 'react'; export type NewAppScreenProps = Readonly<{ templateFileName?: string | undefined; safeAreaInsets?: | Readonly<{ top: number; bottom: number; left: number; right: number; }> | undefined; }>; export function NewAppScreen(props: NewAppScreenProps): React.ReactNode;