Skip to content

Instantly share code, notes, and snippets.

@Wizpna
Last active February 22, 2020 23:37
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Wizpna/6b7094196fe7bcf6df95cbcce8e98dcf to your computer and use it in GitHub Desktop.
Save Wizpna/6b7094196fe7bcf6df95cbcce8e98dcf to your computer and use it in GitHub Desktop.
A simple project demonstrating how to build an online radio app using Flutter
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter_radio/flutter_radio.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
String url = "http://server-23.stream-server.nl:8438";
bool isPlaying = false;
bool isVisible = true;
@override
void initState() {
super.initState();
audioStart();
}
Future<void> audioStart() async {
await FlutterRadio.audioStart();
print('Audio Start OK');
}
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'IndieXL Online Radio',
debugShowCheckedModeBanner: false,
home: new Scaffold(
appBar: new AppBar(
title: const Text('IndieXL Online Radio'),
backgroundColor: Colors.blueGrey.shade900,
centerTitle: true,
),
body: Container(
color: Colors.blueGrey.shade900,
child: new Column(
children: <Widget>[
Expanded(
flex: 7,
child: Icon(
Icons.radio, size: 250,
color: Colors.white,
),
),
Expanded(
flex: 2,
child: Padding(
padding: const EdgeInsets.only(right: 40),
child: Align(
alignment: FractionalOffset.center,
child: IconButton(icon: isPlaying? Icon(
Icons.pause_circle_outline,
size: 80,
color: Colors.white,
)
: Icon(
Icons.play_circle_outline,
color: Colors.white,
size: 80,
),
onPressed: (){
setState(() {
FlutterRadio.play(url: url);
isPlaying = !isPlaying;
isVisible = !isVisible;
});
},
),
),
),
),
SizedBox(height: 50,)
],
),
),
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment