Compare commits

..

No commits in common. "master" and "1.4.0+17" have entirely different histories.

3 changed files with 8 additions and 12 deletions

View File

@ -121,11 +121,9 @@ class _NotificationScreenState extends State<NotificationScreen> {
Badge( Badge(
label: Row( label: Row(
children: [ children: [
Icon( const Icon(
Icons.new_releases_outlined, Icons.new_releases_outlined,
color: Theme.of(context) color: Colors.white,
.colorScheme
.onSurface,
size: 12, size: 12,
), ),
const Gap(4), const Gap(4),

View File

@ -420,13 +420,11 @@ class AttachmentListEntry extends StatelessWidget {
}, },
), ),
if (item!.isMature && !showMature) if (item!.isMature && !showMature)
ClipRect( BackdropFilter(
child: BackdropFilter( filter: ImageFilter.blur(sigmaX: 100, sigmaY: 100),
filter: ImageFilter.blur(sigmaX: 100, sigmaY: 100), child: Container(
child: Container( decoration: BoxDecoration(
decoration: BoxDecoration( color: Colors.black.withOpacity(0.5),
color: Colors.black.withOpacity(0.5),
),
), ),
), ),
), ),

View File

@ -137,7 +137,7 @@ class _PostItemState extends State<PostItem> {
padding: widget.padding, padding: widget.padding,
isCompact: true, isCompact: true,
isNonScrollAttachment: widget.isNonScrollAttachment, isNonScrollAttachment: widget.isNonScrollAttachment,
).paddingOnly(top: 4), ).paddingOnly(left: 14, top: 4),
], ],
); );
} }