Skip to content

Commit 09d2b04

Browse files
committed
Made ScreenContainer props optional
1 parent 1b7ede2 commit 09d2b04

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/core/src/components/ScreenContainer.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import { withTheme } from "../theming";
1212
import type { Theme } from "../styles/DefaultTheme";
1313

1414
type ScreenContainerProps = {
15-
scrollable: boolean;
16-
hasSafeArea: boolean;
17-
hasTopSafeArea: boolean;
18-
hasBottomSafeArea: boolean;
15+
scrollable?: boolean;
16+
hasSafeArea?: boolean;
17+
hasTopSafeArea?: boolean;
18+
hasBottomSafeArea?: boolean;
1919
theme: Theme;
2020
style?: StyleProp<ViewStyle>;
2121
children?: React.ReactNode;

0 commit comments

Comments
 (0)