import { View, Text, StyleSheet } from "react-native"; import React, { useState } from "react"; import CreateLyricsHeader from "./components/CreateLyricsHeader"; import { BlurView } from "expo-blur"; import { Palette } from "../../styles"; import { FONT_FAMILY } from "../../styles/Fonts"; import BorderGradient from "../../components/BorderGradient/BorderGradient"; import { responsiveHeight } from "react-native-responsive-dimensions"; const Rhymes = () => { const [containerLayout, setContainerLayout] = useState(null); return ( { e.persist(); setContainerLayout(e.nativeEvent.layout); }} > {Array.from({ length: 3 }).map((_, index) => ( Introduction instrumentale longue. ))} ); }; export default Rhymes; const styles = StyleSheet.create({ borderGradientStyle: { borderWidth: 1, borderRadius: 20, shadowColor: "#000", shadowOffset: { width: 0, height: 2, }, shadowOpacity: 0.25, shadowRadius: 3.84, elevation: 100, position: "absolute", width: "100%", }, itemContainer: { height: 54, backgroundColor: Palette.glass, borderRadius: 14, overflow: "hidden", shadowColor: "#00000040", shadowOffset: { width: 0, height: 2, }, shadowOpacity: 0.25, shadowRadius: 3.84, elevation: 5, }, dropzone: { fontSize: 16, color: Palette.white, fontFamily: FONT_FAMILY.InterRegular, }, blurContainer: { borderRadius: 20, overflow: "hidden", zIndex: 1, maxHeight: responsiveHeight(55), }, });