From 5e600afba95bb7fc32b33e151259cd1a40e00a1e Mon Sep 17 00:00:00 2001 From: nadia Date: Wed, 24 Apr 2024 16:18:42 +0200 Subject: [PATCH] agregado boton embalses --- lib/main.dart | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/lib/main.dart b/lib/main.dart index 7e30fbf..8838c6f 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -124,6 +124,33 @@ class _MyHomePageState extends State { ), ), ), + InkWell( + onTap: () { + print('Contenedor embalses clickeado'); + }, + child: SizedBox( + width: 300.0, + child: Padding( + padding: const EdgeInsets.only(bottom: 20.0), + child: Container( + padding: const EdgeInsets.all(8.0), + decoration: BoxDecoration( + color: const Color.fromRGBO(33, 150, 243, 1), + borderRadius: BorderRadius.circular(7.0), + ), + child: const Text( + 'Embalses', + textAlign: TextAlign.center, + style: TextStyle( + color: Colors.white, + fontSize: 32.0, + fontWeight: FontWeight.bold, + ), + ), + ), + ), + ), + ), InkWell( onTap: () { print('Contenedor tiempo clickeado');