mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
23 lines
652 B
Dart
23 lines
652 B
Dart
|
import 'package:cake_wallet/utils/device_info.dart';
|
||
|
import 'package:device_display_brightness/device_display_brightness.dart';
|
||
|
|
||
|
class BrightnessUtil {
|
||
|
static Future<void> changeBrightnessForFunction(Future<void> Function() func) async {
|
||
|
// if not mobile, just navigate
|
||
|
if (!DeviceInfo.instance.isMobile) {
|
||
|
func();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// Get the current brightness:
|
||
|
final brightness = await DeviceDisplayBrightness.getBrightness();
|
||
|
|
||
|
// ignore: unawaited_futures
|
||
|
DeviceDisplayBrightness.setBrightness(1.0);
|
||
|
|
||
|
await func();
|
||
|
|
||
|
// ignore: unawaited_futures
|
||
|
DeviceDisplayBrightness.setBrightness(brightness);
|
||
|
}
|
||
|
}
|