mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1/** 2 * Copyright (c) JOB TODAY S.A. and its affiliates. 3 * 4 * This source code is licensed under the MIT license found in the 5 * LICENSE file in the root directory of this source tree. 6 * 7 */ 8 9import React from 'react' 10 11import {ActivityIndicator, Dimensions, StyleSheet, View} from 'react-native' 12 13const SCREEN = Dimensions.get('screen') 14const SCREEN_WIDTH = SCREEN.width 15const SCREEN_HEIGHT = SCREEN.height 16 17export const ImageLoading = () => ( 18 <View style={styles.loading}> 19 <ActivityIndicator size="small" color="#FFF" /> 20 </View> 21) 22 23const styles = StyleSheet.create({ 24 listItem: { 25 width: SCREEN_WIDTH, 26 height: SCREEN_HEIGHT, 27 }, 28 loading: { 29 width: SCREEN_WIDTH, 30 height: SCREEN_HEIGHT, 31 alignItems: 'center', 32 justifyContent: 'center', 33 }, 34 imageScrollContainer: { 35 height: SCREEN_HEIGHT, 36 }, 37})