You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The sample code to update home.dart does not pass category to the AsymetricView
In home.dart, add a variable for Category and pass it to the AsymmetricView.
... @OverRide
Widget build(BuildContext context) {
// TODO: Pass Category variable to AsymmetricView (104)
return AsymmetricView(products: ProductsRepository.loadProducts(Category.all));
}
}