removed the inkwell from the pizza event widget

This commit is contained in:
broodjeaap89 2021-09-07 21:38:04 +02:00
parent c1d1595d8c
commit ac3f008a8c

View file

@ -9,15 +9,7 @@ class PizzaEventWidget extends StatelessWidget {
@override @override
Widget build(BuildContext context){ Widget build(BuildContext context){
return InkWell( return Container(
onTap: () {
Navigator.pushNamed(
context,
"/event/view",
arguments: pizzaEvent
);
},
child: Container(
height: 120, height: 120,
color: Colors.blueAccent, color: Colors.blueAccent,
child: Container( child: Container(
@ -64,7 +56,6 @@ class PizzaEventWidget extends StatelessWidget {
] ]
) )
) )
),
); );
} }
} }