You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
446 B
18 lines
446 B
import { View, Dimensions } from "react-native"; |
|
import React from "react"; |
|
import tw from "tailwind-rn"; |
|
|
|
const { width, height } = Dimensions.get("window"); |
|
|
|
const ImageSlider = ({}) => { |
|
return ( |
|
<View |
|
style={[ |
|
tw("flex flex-row justify-center items-center absolute left-0 top-0"), |
|
{ width : width, height : height, backgroundColor: "black", zIndex : 1 }, |
|
]} |
|
></View> |
|
); |
|
}; |
|
|
|
export default ImageSlider;
|
|
|