/** * Copyright (c) JOB TODAY S.A. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import React from "react"; import { View, Text, StyleSheet } from "react-native"; type Props = { imageIndex: number; imagesCount: number; }; const ImageFooter = ({ imageIndex, imagesCount }: Props) => ( {`${imageIndex + 1} / ${imagesCount}`} ); const styles = StyleSheet.create({ root: { height: 64, backgroundColor: "#00000077", alignItems: "center", justifyContent: "center" }, text: { fontSize: 17, color: "#FFF" } }); export default ImageFooter;