mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2025-12-23 22:18:36 -05:00
* Add alias and update eslint/flow to resolve modules * Update aliases for components and api * Add other src directories to module resolver aliases
18 lines
409 B
JavaScript
18 lines
409 B
JavaScript
// @flow strict-local
|
|
|
|
import { StyleSheet } from "react-native";
|
|
import type { ViewStyleProp } from "react-native/Libraries/StyleSheet/StyleSheet";
|
|
import colors from "styles/colors";
|
|
|
|
const viewStyles: { [string]: ViewStyleProp } = StyleSheet.create( {
|
|
safeAreaContainer: {
|
|
flex: 1,
|
|
backgroundColor: colors.white
|
|
},
|
|
scrollPadding: {
|
|
paddingBottom: 140
|
|
}
|
|
} );
|
|
|
|
export default viewStyles;
|