Chore/make function components 5

This commit is contained in:
Sofiya Tepikin
2022-09-12 11:04:20 +00:00
parent c8d2f5d9ee
commit 92236dfc8a
5 changed files with 163 additions and 202 deletions
+27
View File
@@ -0,0 +1,27 @@
import React from 'react'
import PropTypes from 'prop-types'
import { ActivityIndicator, StyleSheet, View } from 'react-native'
import { Colors } from '../../styles'
function LoadingMoreView({ end }) {
return (
<View style={styles.loadingContainer}>
{!end && <ActivityIndicator size={'large'} color={Colors.orange} />}
</View>
)
}
LoadingMoreView.propTypes = {
end: PropTypes.bool,
}
const styles = StyleSheet.create({
loadingContainer: {
height: '100%',
backgroundColor: Colors.turquoiseLight,
justifyContent: 'center',
},
})
export default LoadingMoreView