anytime_podcast_player
anytime_podcast_player copied to clipboard
Request for Ubuntu desktop support
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
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.