From 3e974fbc34fbf72f450375b48a1a460fd8ada895 Mon Sep 17 00:00:00 2001 From: GabrielTrettel Date: Fri, 8 Oct 2021 12:53:09 -0300 Subject: [PATCH] ConfirmationModal in Account screen --- src/app/components/ConfirmationModal.js | 68 +++++++++++++------------ 1 file changed, 36 insertions(+), 32 deletions(-) diff --git a/src/app/components/ConfirmationModal.js b/src/app/components/ConfirmationModal.js index c8cfd66..eaaf2b3 100644 --- a/src/app/components/ConfirmationModal.js +++ b/src/app/components/ConfirmationModal.js @@ -1,20 +1,12 @@ import React from "react"; -import { - Modal, - StyleSheet, - Text, - TouchableHighlight, - View, -} from "react-native"; - -import { MaterialCommunityIcons } from "@expo/vector-icons"; +import { Modal, StyleSheet, Text, TouchableOpacity, View } from "react-native"; import colors from "../config/colors"; import { dimensions } from "../config/dimensions"; -import { TouchableOpacity } from "react-native-gesture-handler"; function Btn({ label, onPress, bgColor, txtColor }) { + console.log("pimba"); return ( - onPress()}> + - - - - {title} - - - {description} + - - + + + + {title} + + + {description} + + + + + - + ); }