anytime_podcast_player icon indicating copy to clipboard operation
anytime_podcast_player copied to clipboard

Request for Ubuntu desktop support

Open Feichtmeier opened this issue 3 years ago • 5 comments

Hi there :wave: It would be great to have this as a desktop app with an adequate layout and as a snap availible on Ubuntu desktop :)

Layout could be switched like

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      body: LayoutBuilder(
        builder: (context, constraints) {
          if (constraints.maxWidth > 600) {
            return WideLayout();
          } else {
            return NarrowLayout();
          }
        },
      ),
    );
  }
}

Or so :) Thanks in advance

Feichtmeier avatar Apr 14 '21 13:04 Feichtmeier

As someone who uses Ubuntu as their primary desktop OS, I would love to create a version of Anytime for it. It is on my mind for perhaps longer term, but it would take some work as I would need to build support for integrating with Linux audio - something I've not done before. If you have any pointers on this that would be great.

amugofjava avatar Apr 15 '21 18:04 amugofjava