This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Arduino.h> | |
#include "qrencode.h" | |
#include "qrcode_espi.h" | |
QRcode_eSPI::QRcode_eSPI(TFT_eSPI *display) { | |
this->display = display; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Animated, Dimensions, PanResponder, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; | |
const MARGIN = 18; | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
marginHorizontal: MARGIN, | |
backgroundColor: 'transparent', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports.default = exports.ListItem = void 0; | |
var _react = _interopRequireDefault(require("react")); | |
var _propTypes = _interopRequireDefault(require("prop-types")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import { TouchableOpacity, Modal, View } from 'react-native'; | |
import { ViewPropTypes, withTheme } from 'react-native-elements/src/config'; | |
import { ScreenWidth, ScreenHeight, isIOS } from 'react-native-elements/src/helpers'; | |
import Triangle from 'react-native-elements/src/tooltip/Triangle'; | |
import getTooltipCoordinate, { | |
getElementVisibleWidth, |