From 1698dd7db75dadb4915e1b48f0f974b804a019f8 Mon Sep 17 00:00:00 2001 From: Hritik Chouhan Date: Thu, 1 Sep 2022 23:40:02 +0200 Subject: Upload Flutter-MediaPlayer app for IVI Flutter MediaPlayer app which play song directly from MPD server connected via TCP socket.Functions included in mediaplayer play/pause/next/previous/loop , progress bar for current song,playlist from database , volume. Removed Unused code. Bug-AGL: SPEC-4549 Signed-off-by: Hritik Chouhan Change-Id: Ie7cdf109bca266e48fd10cd9b3cc0178edf42a52 --- lib/size.dart | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 lib/size.dart (limited to 'lib/size.dart') diff --git a/lib/size.dart b/lib/size.dart new file mode 100644 index 0000000..7018a81 --- /dev/null +++ b/lib/size.dart @@ -0,0 +1,43 @@ +// SPDX-License-Identifier: Apache-2.0 +import 'package:flutter/material.dart'; +import 'package:flutter/widgets.dart'; + +class SizeConfig { + static late MediaQueryData _mediaQueryData; + static late double screenWidth; + static late double screenHeight; + static late double blockSizeHorizontal; + static late double blockSizeVertical; + static late double _safeAreaHorizontal; + static late double _safeAreaVertical; + static late double safeBlockHorizontal; + static late double safeBlockVertical; + static late double fontsize; + static late TextStyle normalfont; + static late TextStyle smallnormalfont; + + void init(BuildContext context) { + _mediaQueryData = MediaQuery.of(context); + screenWidth = _mediaQueryData.size.width; + screenHeight = _mediaQueryData.size.height; + blockSizeHorizontal = screenWidth / 100; + blockSizeVertical = screenHeight / 100; + _safeAreaHorizontal = + _mediaQueryData.padding.left + _mediaQueryData.padding.right; + _safeAreaVertical = + _mediaQueryData.padding.top + _mediaQueryData.padding.bottom; + safeBlockHorizontal = (screenWidth - _safeAreaHorizontal) / 100; + safeBlockVertical = (screenHeight - _safeAreaVertical) / 100; + fontsize = screenHeight * screenWidth * 0.01 * 0.01 * 0.4; + normalfont = TextStyle( + fontSize: fontsize * 0.8, + fontWeight: FontWeight.w700, + color: Colors.white, + ); + smallnormalfont = TextStyle( + fontSize: fontsize / 2, + fontWeight: FontWeight.w700, + color: Colors.white, + ); + } +} \ No newline at end of file -- cgit 1.2.3-korg