You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @property children Elements rendered inside the padded container.
10
+
* @property edges An array indicating which edges of the screen to respect. Possible values are 'top', 'right', 'bottom', 'left'. Defaults to all edges.
11
+
* @property style Custom styles to apply to the view. Note that padding values will be adjusted to respect safe area insets.
12
+
* @property ...rest All other {@link https://reactnative.dev/docs/view#props | ViewProps} are forwarded.
* A component for granular control of safe area edges on each screen.
22
+
* The difference from `SafeAreaView` in [react-native-safe-area-context](https://www.npmjs.com/package/react-native-safe-area-context) is that the container adds padding to the elements inside it,
23
+
* rather than to the entire screen, making it more flexible for use.
24
+
*
25
+
* > Requires the `react-native-safe-area-context`.
26
+
*
27
+
* @param props Component props. See {@link AppSafeAreaViewProps} for a detailed list.
0 commit comments