import { Dimensions, StyleSheet } from "react-native";

const { width } = Dimensions.get("window");
export const styles = StyleSheet.create({
  mainViewStyle: {
    width: width,
    justifyContent: "center",
    alignItems: "center",
    borderRadius: 20,
  },
  imageStyle: { width: "90%", height: "90%", borderRadius: 20 },
  dotViewStyle: {
    justifyContent: "center",
    alignItems: "center",
    flexDirection: "row",
  },
  dotStyle: { width: 8, height: 8, borderRadius: 5, margin: 5 },
});
