How to use the @freakycoder/react-native-helpers.isIPhoneXFamily function in @freakycoder/react-native-helpers

To help you get started, we’ve selected a few @freakycoder/react-native-helpers examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github WrathChaos / react-native-bottom-search-bar / lib / src / BottomSearchBar.style.js View on Github external
export function glueContainer(props) {
  const {
    height,
    iPhoneXHeight,
    borderTopLeftRadius,
    borderTopRightRadius,
    backgroundColor
  } = props;
  return {
    backgroundColor: backgroundColor || "#fff",
    borderTopLeftRadius: borderTopLeftRadius || 24,
    borderTopRightRadius: borderTopRightRadius || 24,
    height: isIPhoneXFamily() ? iPhoneXHeight || height || 100 : height || 80
  };
}
github WrathChaos / react-native-dynamic-search-bar / lib / src / SearchBar.style.js View on Github external
export function ifIPhoneXHeader(noExtraMargin) {
  if (noExtraMargin) return { marginTop: 16 };
  return {
    marginTop: isIPhoneXFamily() ? 44 : 16
  };
}

@freakycoder/react-native-helpers

All helpers in one; iPhone series support, dimensions helper, hasNotch helper, normalize text helper and text helpers for React Native with very easy use

MIT
Latest version published 1 month ago

Package Health Score

73 / 100
Full package analysis