From 7550659f24509b856240fec8d83b42ab2e96f60a Mon Sep 17 00:00:00 2001 From: WilliamCallao <96638909+WilliamCallao@users.noreply.github.com> Date: Sat, 16 Mar 2024 09:53:41 -0400 Subject: [PATCH] demo/simple-button-usage --- App.js | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/App.js b/App.js index 7215797..041e3a1 100644 --- a/App.js +++ b/App.js @@ -1,11 +1,37 @@ import React from "react"; import { MenuProvider } from "react-native-popup-menu"; import AppNavigator from "./src/navigation/AppNavigator"; +import { View, Alert } from 'react-native'; +import SimpleButton from "./src/utils/SimpleButton"; const App = () => { + const handleButton1Press = () => { + }; + const handleButtonPress = () => { + Alert.alert('Botón Presionado', 'Has presionado el botón', [ + { text: 'OK' }, + ]); + }; + return ( - + + + + + + {/* */} + ); };