Skip to content

Commit

Permalink
commented out request inspector and changed icon
Browse files Browse the repository at this point in the history
  • Loading branch information
p4p1 committed Feb 28, 2021
1 parent 6e95609 commit 95d3182
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Binary file modified app/assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions app/components/FavNotif.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { StyleSheet, View, Text } from 'react-native';
import Swipeout from 'react-native-swipeout';
import { FontAwesomeIcon } from '@fortawesome/react-native-fontawesome'
import { faQuestion, faTrash } from '@fortawesome/free-solid-svg-icons'
import { /*faQuestion,*/ faTrash } from '@fortawesome/free-solid-svg-icons'

import PropTypes from 'prop-types';

Expand All @@ -11,11 +11,11 @@ export default class FavNotif extends React.Component
constructor(props) {
super(props);
this.swipeData = [
{ // TODO: add a more information feature to the notifications
/*{ // TODO: add a more information feature to the notifications
text: <FontAwesomeIcon color={'white'} icon={faQuestion} size={25} />,
backgroundColor: 'blue',
onPress: () => { this.props.info(this.props.data._id) }
},
},*/
{
text: <FontAwesomeIcon color={'white'} icon={faTrash} size={25} />,
backgroundColor: 'red',
Expand Down
6 changes: 3 additions & 3 deletions app/components/Notif.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { StyleSheet, View, Text } from 'react-native';
import Swipeout from 'react-native-swipeout';
import { FontAwesomeIcon } from '@fortawesome/react-native-fontawesome'
import { faQuestion, faHeart, faTrash } from '@fortawesome/free-solid-svg-icons'
import { /*faQuestion,*/ faHeart, faTrash } from '@fortawesome/free-solid-svg-icons'

import PropTypes from 'prop-types';

Expand All @@ -16,11 +16,11 @@ export default class Notif extends React.Component
backgroundColor: 'green',
onPress: () => { this.props.save(this.props.data) }
},
{ // TODO: add a more information feature to the notifications
/*{ // TODO: add a more information feature to the notifications
text: <FontAwesomeIcon color={'white'} icon={faQuestion} size={25} />,
backgroundColor: 'blue',
onPress: () => { this.props.info(this.props.data._id) }
},
},*/
{
text: <FontAwesomeIcon color={'white'} icon={faTrash} size={25} />,
backgroundColor: 'red',
Expand Down

0 comments on commit 95d3182

Please sign in to comment.