diff options
Diffstat (limited to 'app/components/screen/screen.props.ts')
-rw-r--r-- | app/components/screen/screen.props.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/components/screen/screen.props.ts b/app/components/screen/screen.props.ts index 0326fd7..1371c64 100644 --- a/app/components/screen/screen.props.ts +++ b/app/components/screen/screen.props.ts @@ -1,6 +1,6 @@ -import React from "react" -import { StyleProp, ViewStyle } from "react-native" -import { KeyboardOffsets, ScreenPresets } from "./screen.presets" +import React from 'react' +import { StyleProp, ViewStyle } from 'react-native' +import { KeyboardOffsets, ScreenPresets } from './screen.presets' export interface ScreenProps { /** @@ -26,7 +26,7 @@ export interface ScreenProps { /** * An optional status bar setting. Defaults to light-content. */ - statusBar?: "light-content" | "dark-content" + statusBar?: 'light-content' | 'dark-content' /** * Should we not wrap in SafeAreaView? Defaults to false. @@ -42,5 +42,5 @@ export interface ScreenProps { * Should keyboard persist on screen tap. Defaults to handled. * Only applies to scroll preset. */ - keyboardShouldPersistTaps?: "handled" | "always" | "never" + keyboardShouldPersistTaps?: 'handled' | 'always' | 'never' } |