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