Add HotelBusinessCardModal and LostKeyModal to ServicesScreen; update localization for 'Lost room key'
This commit is contained in:
@@ -5,6 +5,8 @@ import { FontAwesome5 } from '@expo/vector-icons';
|
||||
import ServiceCard from '@/components/ServiceCard';
|
||||
import React, { useState } from 'react';
|
||||
import CurrencyConverterModal from '@/components/CurrencyConverterModal';
|
||||
import HotelBusinessCardModal from '@/components/HotelBusinessCardModal';
|
||||
import LostKeyModal from '@/components/LostKeyModal';
|
||||
|
||||
export default function ServicesScreen() {
|
||||
const [currencyModalVisible, setCurrencyModalVisible] = useState(false);
|
||||
@@ -54,6 +56,14 @@ export default function ServicesScreen() {
|
||||
visible={currencyModalVisible}
|
||||
onClose={() => setCurrencyModalVisible(false)}
|
||||
/>
|
||||
<HotelBusinessCardModal
|
||||
visible={hotelModalVisible}
|
||||
onClose={() => setHotelModalVisible(false)}
|
||||
/>
|
||||
<LostKeyModal
|
||||
visible={lostKeyModalVisible}
|
||||
onClose={() => setLostKeyModalVisible(false)}
|
||||
/>
|
||||
</SafeAreaView>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user