agregado boton embalses

This commit is contained in:
2024-04-24 16:18:42 +02:00
parent b1e907ae0c
commit 5e600afba9

View File

@ -124,6 +124,33 @@ class _MyHomePageState extends State<MyHomePage> {
),
),
),
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');