stack_wallet/lib/utilities/util.dart
2022-11-28 12:46:45 -06:00

44 lines
1.2 KiB
Dart

import 'dart:io';
import 'package:flutter/material.dart';
abstract class Util {
static Directory? libraryPath;
static double? screenWidth;
static bool get isDesktop {
// special check for running on linux based phones
if (Platform.isLinux && screenWidth != null && screenWidth! < 800) {
return false;
}
// special check for running under ipad mode in macos
if (Platform.isIOS &&
libraryPath != null &&
!libraryPath!.path.contains("/var/mobile/")) {
return true;
}
return Platform.isLinux || Platform.isMacOS || Platform.isWindows;
}
static MaterialColor createMaterialColor(Color color) {
List<double> strengths = <double>[.05];
final swatch = <int, Color>{};
final int r = color.red, g = color.green, b = color.blue;
for (int i = 1; i < 10; i++) {
strengths.add(0.1 * i);
}
for (var strength in strengths) {
final double ds = 0.5 - strength;
swatch[(strength * 1000).round()] = Color.fromRGBO(
r + ((ds < 0 ? r : (255 - r)) * ds).round(),
g + ((ds < 0 ? g : (255 - g)) * ds).round(),
b + ((ds < 0 ? b : (255 - b)) * ds).round(),
1,
);
}
return MaterialColor(color.value, swatch);
}
}