Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import React, { Component } from 'react';
import React, { Component} from 'react';
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pls fix the space

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

import PropTypes from 'prop-types'; // 15.6.0
import {
TextInput,
View,
ActivityIndicator,
TouchableOpacity,
StyleSheet,
ViewPropTypes
} from 'react-native';
import { Ionicons } from '@expo/vector-icons'; // 6.2.2

Expand All @@ -19,7 +20,7 @@ class ProgressiveInput extends Component {
clearButtonColor: PropTypes.string,
clearButtonSize: PropTypes.number,
clearButtonStyle: PropTypes.object,
activityIndicatorStyle: ActivityIndicator.propTypes.style,
activityIndicatorStyle: ViewPropTypes.style,
onBlur: PropTypes.func,
onChangeText: PropTypes.func,
onFocus: PropTypes.func,
Expand Down