/* eslint-disable react/no-unstable-nested-components */ import {FlatList, SafeAreaView, StyleSheet, Text, View} from 'react-native'; import React from 'react'; import Circle from '../default/Circle'; import GallerySlotListComponent from './GallerySlotListComponent'; import {Step} from '@s20.ai/copilot-camera-sdk/src/types/AOP'; type Props = { steps: Step[]; }; const Gallery = (props: Props) => { return ( data.stepId} ListHeaderComponent={() => } ListFooterComponent={() => } ItemSeparatorComponent={() => } renderItem={({item}) => { return ( {item.title} ); }} /> ); }; export default Gallery; const styles = StyleSheet.create({ root: { flex: 1, position: 'relative', alignItems: 'center', justifyContent: 'space-evenly', backgroundColor: 'white', }, separator: { height: 40, }, listTextSection: { flexDirection: 'row', alignItems: 'center', justifyContent: 'flex-start', marginLeft: 20, marginBottom: 10, }, listItemText: { fontStyle: 'italic', fontSize: 15, marginRight: 10, color: 'black', }, });