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');