summaryrefslogtreecommitdiffstats
path: root/lib/socketProblem.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/socketProblem.dart')
-rw-r--r--lib/socketProblem.dart29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/socketProblem.dart b/lib/socketProblem.dart
new file mode 100644
index 0000000..af4b2b5
--- /dev/null
+++ b/lib/socketProblem.dart
@@ -0,0 +1,29 @@
+// SPDX-License-Identifier: Apache-2.0
+import 'package:flutter/material.dart';
+import 'package:flutter/src/foundation/key.dart';
+import 'package:flutter/src/widgets/framework.dart';
+
+class SocketProblem extends StatelessWidget {
+ const SocketProblem({Key? key}) : super(key: key);
+
+ @override
+ Widget build(BuildContext context) {
+
+ return Scaffold(
+ body: SafeArea(child: Center(child: Container(
+ height: MediaQuery.of(context).size.height*0.5,
+ width: MediaQuery.of(context).size.width*0.5,
+ color: Colors.white,
+ child: const Center(
+ child: Text("Unable to Connect with MPD server", style: TextStyle(
+ fontSize: 30,
+ color: Colors.black,
+
+
+ ),),
+ ),
+ ),)),
+ );
+
+ }
+} \ No newline at end of file