Skip to content

Instantly share code, notes, and snippets.

View israelias's full-sized avatar
🧬
git clone @israelias

J. Elias Sañez israelias

🧬
git clone @israelias
View GitHub Profile
@israelias
israelias / react-fixed-bottom.js
Created February 2, 2021 01:40 — forked from Toolo/react-fixed-bottom.js
React component with proper fixed bottom support for Safari mobile
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import throttle from 'lodash.throttle';
const SAFARI_MOBILE_BOTTOM_MENU_HEIGHT = 44;
export default class FixedBottom extends Component {
static propTypes = {
children: PropTypes.element.isRequired,
offset: PropTypes.number,