Skip to content

Commit

Permalink
Merge pull request #224 from testshallpass/alert-queue
Browse files Browse the repository at this point in the history
Implement Alert queue
  • Loading branch information
testshallpass authored Jul 13, 2020
2 parents 878e1dc + 97849a9 commit 00eeda8
Show file tree
Hide file tree
Showing 27 changed files with 17,656 additions and 12,203 deletions.
4 changes: 4 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
root: true,
extends: '@react-native-community',
};
6 changes: 6 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
bracketSpacing: false,
jsxBracketSameLine: true,
singleQuote: true,
trailingComma: 'all',
};
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
language: node_js
node_js:
- "8.11.3"
- "13.8.0"
branches:
only:
- master
build:
run:
- npm test
- yarn test
before_install:
- pip install --user codecov
after_success:
Expand Down
8 changes: 4 additions & 4 deletions CancelButton.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React, { Component } from 'react';
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import { TouchableOpacity } from 'react-native';
import {TouchableOpacity} from 'react-native';
import ImageView from './imageview';
import { DEFAULT_IMAGE_DIMENSIONS } from './constants';
import {DEFAULT_IMAGE_DIMENSIONS} from './constants';

export default class CancelButton extends Component {
static propTypes = {
Expand All @@ -21,7 +21,7 @@ export default class CancelButton extends Component {
},
};
render() {
const { style, onPress, imageStyle, imageSrc } = this.props;
const {style, onPress, imageStyle, imageSrc} = this.props;
return (
<TouchableOpacity style={style} onPress={onPress}>
<ImageView style={imageStyle} source={imageSrc} />
Expand Down
Loading

0 comments on commit 00eeda8

Please sign in to comment.