Jonatas

format with dartfmt

... ... @@ -157,19 +157,18 @@ class GetPageRoute<T> extends PageRoute<T> {
}
if (customTransition != null) {
return customTransition.buildTransition(
context,
finalCurve,
alignment,
animation,
secondaryAnimation,
popGesture ?? Get.defaultPopGesture
? _CupertinoBackGestureDetector<T>(
enabledCallback: () => _isPopGestureEnabled<T>(this),
onStartPopGesture: () => _startPopGesture<T>(this),
child: child)
: child,
);
context,
finalCurve,
alignment,
animation,
secondaryAnimation,
popGesture ?? Get.defaultPopGesture
? _CupertinoBackGestureDetector<T>(
enabledCallback: () => _isPopGestureEnabled<T>(this),
onStartPopGesture: () => _startPopGesture<T>(this),
child: child)
: child,
);
}
/// Apply the curve by default...
... ...
... ... @@ -182,7 +182,7 @@ class Worker {
//final bool _verbose = true;
void _log(String msg) {
// if (!_verbose) return;
// if (!_verbose) return;
GetConfig.log('$runtimeType $type $msg');
}
... ...