UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

9 lines 292 B
import { StyleSheet } from 'react-native'; export function unpackStyle(style, options = {}) { if (style) { return JSON.parse(JSON.stringify(options.flatten ? StyleSheet.flatten(style) : style)); } } export function getAccessibleHitSlop(size) { return Math.max(0, (48 - size) / 2); }