mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-23 18:22:39 +03:00
Revert "Add workaround for rendering issue on Android."
This reverts commit 885fe439b6
.
This commit is contained in:
parent
b041d4cca6
commit
88fead73b2
@ -1,5 +1,4 @@
|
||||
import 'dart:async';
|
||||
import 'dart:io';
|
||||
import 'dart:ui';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
@ -56,20 +55,13 @@ Future<T?> showBlurDialog<T>({
|
||||
barrierColor: Colors.black12,
|
||||
pageBuilder: (ctx, anim1, anim2) => builder(ctx),
|
||||
transitionDuration: const Duration(milliseconds: 150),
|
||||
transitionBuilder: (ctx, anim1, anim2, child) {
|
||||
var sigma = 20 * anim1.value;
|
||||
// Flutter 3.3 has an issue with rendering this on Android.
|
||||
// Workaround: Don't animate the un-blur.
|
||||
if (Platform.isAndroid && anim1.status == AnimationStatus.reverse) {
|
||||
sigma = 0;
|
||||
}
|
||||
return BackdropFilter(
|
||||
filter: ImageFilter.blur(sigmaX: sigma, sigmaY: sigma),
|
||||
child: FadeTransition(
|
||||
opacity: anim1,
|
||||
child: child,
|
||||
),
|
||||
);
|
||||
},
|
||||
transitionBuilder: (ctx, anim1, anim2, child) => BackdropFilter(
|
||||
filter: ImageFilter.blur(
|
||||
sigmaX: 20 * anim1.value, sigmaY: 20 * anim1.value),
|
||||
child: FadeTransition(
|
||||
opacity: anim1,
|
||||
child: child,
|
||||
),
|
||||
),
|
||||
routeSettings: routeSettings,
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user