summaryrefslogtreecommitdiffstats
path: root/lib/socketProblem.dart
blob: af4b2b56ad49102828e422edd87712d06590fd93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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,

                    
            ),),
          ),
        ),)),
    );
    
  }
}