related-ui-components 2.4.9 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/module/app.js +139 -86
- package/lib/module/app.js.map +1 -1
- package/lib/typescript/src/app.d.ts +1 -3
- package/lib/typescript/src/app.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/app.tsx +134 -134
package/lib/module/app.js
CHANGED
|
@@ -1,89 +1,142 @@
|
|
|
1
|
-
|
|
1
|
+
// import React, { useState } from "react";
|
|
2
|
+
// import { SafeAreaView, StyleSheet, StatusBar } from "react-native";
|
|
3
|
+
// import CarouselCardStack from "./components/CarouselCardStack/CarouselCardStack"; // Adjust path as needed
|
|
4
|
+
// import { GestureHandlerRootView } from "react-native-gesture-handler";
|
|
5
|
+
// import {
|
|
6
|
+
// CarRentalForm,
|
|
7
|
+
// DateRangePicker,
|
|
8
|
+
// FlightForm,
|
|
9
|
+
// FlightSummary,
|
|
10
|
+
// HotelForm,
|
|
11
|
+
// HotelSummary,
|
|
12
|
+
// Filters,
|
|
13
|
+
// } from "./components";
|
|
14
|
+
// import { lightTheme, RelatedProvider, useTheme } from "./theme";
|
|
15
|
+
// import CircularProgressBar from "./components/ProgressBar/CircularProgressBar";
|
|
16
|
+
// import PhoneInput from "./components/Input/PhoneInput";
|
|
17
|
+
// import { BottomSheetStackProvider } from "./contexts";
|
|
18
|
+
// import { SafeAreaProvider } from "react-native-safe-area-context";
|
|
19
|
+
|
|
20
|
+
// // Sample data - replace with your actual image URLs
|
|
21
|
+
// const DUMMY_DATA = [
|
|
22
|
+
// {
|
|
23
|
+
// id: "1",
|
|
24
|
+
// image:
|
|
25
|
+
// "https://images.pexels.com/photos/3354648/pexels-photo-3354648.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
|
|
26
|
+
// title: "Mountain Lake",
|
|
27
|
+
// },
|
|
28
|
+
// // {
|
|
29
|
+
// // id: "2",
|
|
30
|
+
// // image:
|
|
31
|
+
// // "https://images.pexels.com/photos/163273/sunrise-speedboat-ocean-water-163273.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
|
|
32
|
+
// // title: "Sunset Cruise",
|
|
33
|
+
// // },
|
|
34
|
+
// {
|
|
35
|
+
// id: "3",
|
|
36
|
+
// image:
|
|
37
|
+
// "https://images.pexels.com/photos/1430677/pexels-photo-1430677.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
|
|
38
|
+
// title: "Ocean Horizon",
|
|
39
|
+
// },
|
|
40
|
+
// {
|
|
41
|
+
// id: "4",
|
|
42
|
+
// image:
|
|
43
|
+
// "https://images.pexels.com/photos/2387793/pexels-photo-2387793.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
|
|
44
|
+
// title: "Forest Trail",
|
|
45
|
+
// },
|
|
46
|
+
// // {
|
|
47
|
+
// // id: "5",
|
|
48
|
+
// // image:
|
|
49
|
+
// // "https://images.pexels.com/photos/302804/pexels-photo-302804.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
|
|
50
|
+
// // title: "City Lights",
|
|
51
|
+
// // },
|
|
52
|
+
// ];
|
|
53
|
+
|
|
54
|
+
// const App = () => {
|
|
55
|
+
// const { theme } = useTheme();
|
|
2
56
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
//
|
|
6
|
-
|
|
7
|
-
import { lightTheme, RelatedProvider, useTheme } from "./theme/index.js";
|
|
8
|
-
import PhoneInput from "./components/Input/PhoneInput.js";
|
|
9
|
-
import { BottomSheetStackProvider } from "./contexts/index.js";
|
|
10
|
-
import { SafeAreaProvider } from "react-native-safe-area-context";
|
|
57
|
+
// const [departureDate, setDepartureDate] = useState<string | undefined>(
|
|
58
|
+
// undefined
|
|
59
|
+
// );
|
|
60
|
+
// const [returnDate, setReturnDate] = useState<string | undefined>(undefined);
|
|
11
61
|
|
|
12
|
-
//
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
//
|
|
20
|
-
//
|
|
21
|
-
//
|
|
22
|
-
//
|
|
23
|
-
//
|
|
24
|
-
//
|
|
25
|
-
{
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
//
|
|
35
|
-
//
|
|
36
|
-
//
|
|
37
|
-
//
|
|
38
|
-
//
|
|
39
|
-
// }
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}
|
|
88
|
-
|
|
62
|
+
// const [progress, setProgress] = useState(25);
|
|
63
|
+
// const handleAnimate = () => {
|
|
64
|
+
// // Set progress to a new random value between 0 and 100
|
|
65
|
+
// const newProgress = Math.floor(Math.random() * 101);
|
|
66
|
+
// setProgress(newProgress);
|
|
67
|
+
// };
|
|
68
|
+
// return (
|
|
69
|
+
// <>
|
|
70
|
+
// <SafeAreaProvider>
|
|
71
|
+
// <GestureHandlerRootView style={{ flex: 1 }}>
|
|
72
|
+
// <RelatedProvider theme={lightTheme}>
|
|
73
|
+
// <BottomSheetStackProvider>
|
|
74
|
+
// <StatusBar barStyle="light-content" />
|
|
75
|
+
// <SafeAreaView style={styles.appContainer}>
|
|
76
|
+
// {/* <CircularProgressBar
|
|
77
|
+
// progress={5}
|
|
78
|
+
// lineCap="round"
|
|
79
|
+
// textFont={""}
|
|
80
|
+
// /> */}
|
|
81
|
+
// {/* <DateRangePicker
|
|
82
|
+
// onDatesChange={(t) => {
|
|
83
|
+
// setDepartureDate(t.departure);
|
|
84
|
+
// setReturnDate(t.return);
|
|
85
|
+
// }}
|
|
86
|
+
// departureDate={departureDate}
|
|
87
|
+
// // departureDisplayValue={departureDate}
|
|
88
|
+
// returnDate={returnDate}
|
|
89
|
+
// // returnDisplayValue={returnDate}
|
|
90
|
+
// ></DateRangePicker> */}
|
|
91
|
+
// {/* <Filters
|
|
92
|
+
// bottomSheetBackgroundStyle={{
|
|
93
|
+
// borderTopRightRadius: 30,
|
|
94
|
+
// borderTopLeftRadius: 30,
|
|
95
|
+
// padding: 10,
|
|
96
|
+
// backgroundColor: "white",
|
|
97
|
+
// }}
|
|
98
|
+
// containerStyle={{
|
|
99
|
+
// backgroundColor: "white",
|
|
100
|
+
// borderTopRightRadius: 60,
|
|
101
|
+
// borderTopLeftRadius: 60,
|
|
102
|
+
// }}
|
|
103
|
+
// resetTextStyle={{ color: theme.primary }}
|
|
104
|
+
// sectionTitleStyle={{ color: "black" }}
|
|
105
|
+
// titleStyle={{ color: "black" }}
|
|
106
|
+
// onActionButtonPress={(result) => {
|
|
107
|
+
// // setFiltersResult(result);
|
|
108
|
+
// }}
|
|
109
|
+
// sortOptions={[{ id: 1, name: "test", value: "test" }]}
|
|
110
|
+
// // onClose={() => setDisplayFilters(false)}
|
|
111
|
+
// applyButtonStyle={{ borderRadius: 8, backgroundColor: "black" }}
|
|
112
|
+
// applyButtonTextStyle={{ color: theme.secondary }}
|
|
113
|
+
// headerStyle={{ borderBottomWidth: 0 }}
|
|
114
|
+
// ></Filters> */}
|
|
115
|
+
// {/* <FlightSummary></FlightSummary> */}
|
|
116
|
+
// {/* <FlightForm></FlightForm> */}
|
|
117
|
+
// {/* <HotelSummary></HotelSummary> */}
|
|
118
|
+
// {/* <HotelForm></HotelForm> */}
|
|
119
|
+
// {/* <DateRangePicker onDatesChange={()=>{}} labelContainerStyle={{backgroundColor:"red"}}></DateRangePicker> */}
|
|
120
|
+
// {/* <CarRentalForm onSelectionChange={console.log}></CarRentalForm> */}
|
|
121
|
+
// {/* <CarouselCardStack data={DUMMY_DATA} /> */}
|
|
122
|
+
// <PhoneInput value="" onChangeText={() => {}} inputContainerStyle={{height: 55}}></PhoneInput>
|
|
123
|
+
// </SafeAreaView>
|
|
124
|
+
// </BottomSheetStackProvider>
|
|
125
|
+
// </RelatedProvider>
|
|
126
|
+
// </GestureHandlerRootView>
|
|
127
|
+
// </SafeAreaProvider>
|
|
128
|
+
// </>
|
|
129
|
+
// );
|
|
130
|
+
// };
|
|
131
|
+
|
|
132
|
+
// const styles = StyleSheet.create({
|
|
133
|
+
// appContainer: {
|
|
134
|
+
// flex: 1,
|
|
135
|
+
// backgroundColor: "#212121", // Match carousel background or choose another
|
|
136
|
+
// justifyContent: "center", // Center the carousel vertically if it's the main content
|
|
137
|
+
// },
|
|
138
|
+
// });
|
|
139
|
+
|
|
140
|
+
// export default App;
|
|
141
|
+
"use strict";
|
|
89
142
|
//# sourceMappingURL=app.js.map
|
package/lib/module/app.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"..\\..\\src","sources":["app.tsx"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AAAA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../src/app.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../src/app.tsx"],"names":[],"mappings":""}
|
package/package.json
CHANGED
package/src/app.tsx
CHANGED
|
@@ -1,140 +1,140 @@
|
|
|
1
|
-
import React, { useState } from "react";
|
|
2
|
-
import { SafeAreaView, StyleSheet, StatusBar } from "react-native";
|
|
3
|
-
import CarouselCardStack from "./components/CarouselCardStack/CarouselCardStack"; // Adjust path as needed
|
|
4
|
-
import { GestureHandlerRootView } from "react-native-gesture-handler";
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
} from "./components";
|
|
14
|
-
import { lightTheme, RelatedProvider, useTheme } from "./theme";
|
|
15
|
-
import CircularProgressBar from "./components/ProgressBar/CircularProgressBar";
|
|
16
|
-
import PhoneInput from "./components/Input/PhoneInput";
|
|
17
|
-
import { BottomSheetStackProvider } from "./contexts";
|
|
18
|
-
import { SafeAreaProvider } from "react-native-safe-area-context";
|
|
1
|
+
// import React, { useState } from "react";
|
|
2
|
+
// import { SafeAreaView, StyleSheet, StatusBar } from "react-native";
|
|
3
|
+
// import CarouselCardStack from "./components/CarouselCardStack/CarouselCardStack"; // Adjust path as needed
|
|
4
|
+
// import { GestureHandlerRootView } from "react-native-gesture-handler";
|
|
5
|
+
// import {
|
|
6
|
+
// CarRentalForm,
|
|
7
|
+
// DateRangePicker,
|
|
8
|
+
// FlightForm,
|
|
9
|
+
// FlightSummary,
|
|
10
|
+
// HotelForm,
|
|
11
|
+
// HotelSummary,
|
|
12
|
+
// Filters,
|
|
13
|
+
// } from "./components";
|
|
14
|
+
// import { lightTheme, RelatedProvider, useTheme } from "./theme";
|
|
15
|
+
// import CircularProgressBar from "./components/ProgressBar/CircularProgressBar";
|
|
16
|
+
// import PhoneInput from "./components/Input/PhoneInput";
|
|
17
|
+
// import { BottomSheetStackProvider } from "./contexts";
|
|
18
|
+
// import { SafeAreaProvider } from "react-native-safe-area-context";
|
|
19
19
|
|
|
20
|
-
// Sample data - replace with your actual image URLs
|
|
21
|
-
const DUMMY_DATA = [
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
];
|
|
20
|
+
// // Sample data - replace with your actual image URLs
|
|
21
|
+
// const DUMMY_DATA = [
|
|
22
|
+
// {
|
|
23
|
+
// id: "1",
|
|
24
|
+
// image:
|
|
25
|
+
// "https://images.pexels.com/photos/3354648/pexels-photo-3354648.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
|
|
26
|
+
// title: "Mountain Lake",
|
|
27
|
+
// },
|
|
28
|
+
// // {
|
|
29
|
+
// // id: "2",
|
|
30
|
+
// // image:
|
|
31
|
+
// // "https://images.pexels.com/photos/163273/sunrise-speedboat-ocean-water-163273.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
|
|
32
|
+
// // title: "Sunset Cruise",
|
|
33
|
+
// // },
|
|
34
|
+
// {
|
|
35
|
+
// id: "3",
|
|
36
|
+
// image:
|
|
37
|
+
// "https://images.pexels.com/photos/1430677/pexels-photo-1430677.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
|
|
38
|
+
// title: "Ocean Horizon",
|
|
39
|
+
// },
|
|
40
|
+
// {
|
|
41
|
+
// id: "4",
|
|
42
|
+
// image:
|
|
43
|
+
// "https://images.pexels.com/photos/2387793/pexels-photo-2387793.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
|
|
44
|
+
// title: "Forest Trail",
|
|
45
|
+
// },
|
|
46
|
+
// // {
|
|
47
|
+
// // id: "5",
|
|
48
|
+
// // image:
|
|
49
|
+
// // "https://images.pexels.com/photos/302804/pexels-photo-302804.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
|
|
50
|
+
// // title: "City Lights",
|
|
51
|
+
// // },
|
|
52
|
+
// ];
|
|
53
53
|
|
|
54
|
-
const App = () => {
|
|
55
|
-
|
|
54
|
+
// const App = () => {
|
|
55
|
+
// const { theme } = useTheme();
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
57
|
+
// const [departureDate, setDepartureDate] = useState<string | undefined>(
|
|
58
|
+
// undefined
|
|
59
|
+
// );
|
|
60
|
+
// const [returnDate, setReturnDate] = useState<string | undefined>(undefined);
|
|
61
61
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
};
|
|
62
|
+
// const [progress, setProgress] = useState(25);
|
|
63
|
+
// const handleAnimate = () => {
|
|
64
|
+
// // Set progress to a new random value between 0 and 100
|
|
65
|
+
// const newProgress = Math.floor(Math.random() * 101);
|
|
66
|
+
// setProgress(newProgress);
|
|
67
|
+
// };
|
|
68
|
+
// return (
|
|
69
|
+
// <>
|
|
70
|
+
// <SafeAreaProvider>
|
|
71
|
+
// <GestureHandlerRootView style={{ flex: 1 }}>
|
|
72
|
+
// <RelatedProvider theme={lightTheme}>
|
|
73
|
+
// <BottomSheetStackProvider>
|
|
74
|
+
// <StatusBar barStyle="light-content" />
|
|
75
|
+
// <SafeAreaView style={styles.appContainer}>
|
|
76
|
+
// {/* <CircularProgressBar
|
|
77
|
+
// progress={5}
|
|
78
|
+
// lineCap="round"
|
|
79
|
+
// textFont={""}
|
|
80
|
+
// /> */}
|
|
81
|
+
// {/* <DateRangePicker
|
|
82
|
+
// onDatesChange={(t) => {
|
|
83
|
+
// setDepartureDate(t.departure);
|
|
84
|
+
// setReturnDate(t.return);
|
|
85
|
+
// }}
|
|
86
|
+
// departureDate={departureDate}
|
|
87
|
+
// // departureDisplayValue={departureDate}
|
|
88
|
+
// returnDate={returnDate}
|
|
89
|
+
// // returnDisplayValue={returnDate}
|
|
90
|
+
// ></DateRangePicker> */}
|
|
91
|
+
// {/* <Filters
|
|
92
|
+
// bottomSheetBackgroundStyle={{
|
|
93
|
+
// borderTopRightRadius: 30,
|
|
94
|
+
// borderTopLeftRadius: 30,
|
|
95
|
+
// padding: 10,
|
|
96
|
+
// backgroundColor: "white",
|
|
97
|
+
// }}
|
|
98
|
+
// containerStyle={{
|
|
99
|
+
// backgroundColor: "white",
|
|
100
|
+
// borderTopRightRadius: 60,
|
|
101
|
+
// borderTopLeftRadius: 60,
|
|
102
|
+
// }}
|
|
103
|
+
// resetTextStyle={{ color: theme.primary }}
|
|
104
|
+
// sectionTitleStyle={{ color: "black" }}
|
|
105
|
+
// titleStyle={{ color: "black" }}
|
|
106
|
+
// onActionButtonPress={(result) => {
|
|
107
|
+
// // setFiltersResult(result);
|
|
108
|
+
// }}
|
|
109
|
+
// sortOptions={[{ id: 1, name: "test", value: "test" }]}
|
|
110
|
+
// // onClose={() => setDisplayFilters(false)}
|
|
111
|
+
// applyButtonStyle={{ borderRadius: 8, backgroundColor: "black" }}
|
|
112
|
+
// applyButtonTextStyle={{ color: theme.secondary }}
|
|
113
|
+
// headerStyle={{ borderBottomWidth: 0 }}
|
|
114
|
+
// ></Filters> */}
|
|
115
|
+
// {/* <FlightSummary></FlightSummary> */}
|
|
116
|
+
// {/* <FlightForm></FlightForm> */}
|
|
117
|
+
// {/* <HotelSummary></HotelSummary> */}
|
|
118
|
+
// {/* <HotelForm></HotelForm> */}
|
|
119
|
+
// {/* <DateRangePicker onDatesChange={()=>{}} labelContainerStyle={{backgroundColor:"red"}}></DateRangePicker> */}
|
|
120
|
+
// {/* <CarRentalForm onSelectionChange={console.log}></CarRentalForm> */}
|
|
121
|
+
// {/* <CarouselCardStack data={DUMMY_DATA} /> */}
|
|
122
|
+
// <PhoneInput value="" onChangeText={() => {}} inputContainerStyle={{height: 55}}></PhoneInput>
|
|
123
|
+
// </SafeAreaView>
|
|
124
|
+
// </BottomSheetStackProvider>
|
|
125
|
+
// </RelatedProvider>
|
|
126
|
+
// </GestureHandlerRootView>
|
|
127
|
+
// </SafeAreaProvider>
|
|
128
|
+
// </>
|
|
129
|
+
// );
|
|
130
|
+
// };
|
|
131
131
|
|
|
132
|
-
const styles = StyleSheet.create({
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
});
|
|
132
|
+
// const styles = StyleSheet.create({
|
|
133
|
+
// appContainer: {
|
|
134
|
+
// flex: 1,
|
|
135
|
+
// backgroundColor: "#212121", // Match carousel background or choose another
|
|
136
|
+
// justifyContent: "center", // Center the carousel vertically if it's the main content
|
|
137
|
+
// },
|
|
138
|
+
// });
|
|
139
139
|
|
|
140
|
-
export default App;
|
|
140
|
+
// export default App;
|