UNPKG

@react-navigation/stack

Version:

Stack navigator component for iOS and Android with animated transitions and gestures

24 lines (23 loc) 531 B
"use strict"; import Color from 'color'; import { Platform } from 'react-native'; export function getShadowStyle({ offset, radius, opacity, color = '#000' }) { const result = Platform.select({ web: { boxShadow: `${offset.width}px ${offset.height}px ${radius}px ${Color(color).alpha(opacity).toString()}` }, default: { shadowOffset: offset, shadowRadius: radius, shadowColor: color, shadowOpacity: opacity } }); return result; } //# sourceMappingURL=getShadowStyle.js.map