From 042b3d90198b0723c4147cf26dce00329a5c482d Mon Sep 17 00:00:00 2001 From: leon-morival Date: Mon, 6 Oct 2025 15:22:30 +0200 Subject: [PATCH] modals --- src/components/Alert.js | 55 +++++++++++++--------- src/components/Button.js | 12 ++--- src/components/ShareBtnWeb.js | 7 +-- src/screens/Home/Home.js | 15 +++++- src/screens/Home/HomeSave.js | 5 +- src/screens/Playback/RecordPlayback.js | 5 +- src/screens/Playback/RecordPlayback.web.js | 5 +- src/screens/Studio/Studio.js | 5 +- src/screens/Writing/CreatingLyrics.js | 5 +- src/screens/Writing/Lyrics.js | 32 ++++--------- src/screens/cover/PouchReady.js | 36 +++++++------- 11 files changed, 95 insertions(+), 87 deletions(-) diff --git a/src/components/Alert.js b/src/components/Alert.js index 0909e07..b46f1d3 100644 --- a/src/components/Alert.js +++ b/src/components/Alert.js @@ -1,12 +1,12 @@ -import React, { useState } from "react"; -import { Alert, Platform, View, Text } from "react-native"; import { PortalProvider } from "@gorhom/portal"; +import React, { useState } from "react"; +import { Alert, Platform, Text } from "react-native"; -import { Fonts, Style, gutters } from "../styles"; - +import { BlurView } from "expo-blur"; +import { View } from "react-native"; +import { Fonts, gutters } from "../styles"; +import GradientButton from "./GradientButton"; import Overlay from "./Overlay"; -import Button from "./Button"; - const WebAlertModal = ({ title, description, options }) => { const [visible, setVisible] = useState(true); @@ -26,19 +26,27 @@ const WebAlertModal = ({ title, description, options }) => { return ( - @@ -58,19 +66,22 @@ const WebAlertModal = ({ title, description, options }) => { {description} -