mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-17 06:03:20 +00:00
33 lines
1 KiB
Dart
33 lines
1 KiB
Dart
library elevation_extension;
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
extension ElevationExtension on BoxDecoration {
|
|
BoxDecoration copyWith({
|
|
final Color? color,
|
|
final DecorationImage? image,
|
|
final BoxBorder? border,
|
|
final BorderRadiusGeometry? borderRadius,
|
|
final List<BoxShadow>? boxShadow,
|
|
final Gradient? gradient,
|
|
final BlendMode? backgroundBlendMode,
|
|
final BoxShape? shape,
|
|
}) =>
|
|
BoxDecoration(
|
|
color: color ?? this.color,
|
|
image: image ?? this.image,
|
|
border: border ?? this.border,
|
|
borderRadius: borderRadius ?? this.borderRadius,
|
|
boxShadow: this.boxShadow != null || boxShadow != null
|
|
? <BoxShadow>[
|
|
...this.boxShadow ?? <BoxShadow>[],
|
|
...boxShadow ?? <BoxShadow>[]
|
|
]
|
|
: null,
|
|
gradient: gradient ?? this.gradient,
|
|
backgroundBlendMode: backgroundBlendMode ?? this.backgroundBlendMode,
|
|
shape: shape ?? this.shape,
|
|
);
|
|
}
|