Replies: 2 comments 2 replies
-
Hi @benc43, I'm not sure I understand your question. Are you trying to create an embedded web player for your own Podcast app? I don't have a lot of experience with Flutter web as I've focused on mobile and a bit of desktop, but I'll give you some pointers if I can. |
Beta Was this translation helpful? Give feedback.
-
Ah! you are trying to get Anytime to work in the browser. Anytime targets mobile and makes a lot of use of the dart:io package which cannot be used with Flutter web. You would need to update/replace the code that makes use of this package, or try a package such as universal_io which is a drop in replacement for dart:io that also handles web. There are other areas of the code that you would need to check and adapt to running on the web. |
Beta Was this translation helpful? Give feedback.
-
Hi
Understand the current version does not support flutter web (tried compile with Flutter(Chrome) and doesn't work). My mvp project, custom podcast with a special player, needs to start off without the need to install the app (testing idea and users acceptance)
Any help appreciated
Beta Was this translation helpful? Give feedback.
All reactions