File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -618,8 +618,9 @@ class AssetPicker extends StatelessWidget {
618
618
style: TextStyle (
619
619
color: Colors .white,
620
620
fontSize: isAppleOS ? 16.0 : 14.0 ,
621
- fontWeight:
622
- isAppleOS ? FontWeight .w600 : FontWeight .normal,
621
+ fontWeight: isAppleOS
622
+ ? FontWeight .w600
623
+ : FontWeight .normal,
623
624
),
624
625
)
625
626
: const SizedBox .shrink (),
@@ -792,8 +793,10 @@ class AssetPicker extends StatelessWidget {
792
793
if (isAppleOS) {
793
794
child = ClipRect (
794
795
child: BackdropFilter (
795
- filter:
796
- ui.ImageFilter .blur (sigmaX: appleOSBlurRadius, sigmaY: appleOSBlurRadius),
796
+ filter: ui.ImageFilter .blur (
797
+ sigmaX: appleOSBlurRadius,
798
+ sigmaY: appleOSBlurRadius,
799
+ ),
797
800
child: child,
798
801
),
799
802
);
You can’t perform that action at this time.
0 commit comments