diff options
author | Kirill Rogovoy <[email protected]> | 2021-07-19 20:06:08 +0300 |
---|---|---|
committer | Kirill Rogovoy <[email protected]> | 2021-07-19 20:06:08 +0300 |
commit | f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 (patch) | |
tree | 575c0ff2cbb846252bd2e494c81c396846aab2f6 /app/components/screen/screen.props.ts | |
parent | 67ad38d0a7cd319623e9f41c0c381ed5c5f6f973 (diff) |
Apply Prettier
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' } |