do create: (context) => Cart(), child: MaterialApp( //This specifies the app entrypoint home: HomePage(), ), instead of: return MaterialApp( create: (context) => Cart(), //This specifies the app entrypoint child: HomePage(), ),