A framework for building convergent cross-platform Nextcloud clients using Flutter.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
884 B

part of '../neon_news.dart';
2 years ago
class NewsFeedIcon extends StatelessWidget {
const NewsFeedIcon({
required this.feed,
this.icon = 48,
this.borderRadius,
2 years ago
super.key,
});
final NextcloudNewsFeed feed;
final double icon;
final BorderRadius? borderRadius;
2 years ago
@override
Widget build(final BuildContext context) => NeonImageWrapper(
color: Colors.white,
size: Size.square(icon),
borderRadius: borderRadius,
child: feed.faviconLink != null && feed.faviconLink != ''
? NeonCachedUrlImage(
url: feed.faviconLink!,
size: Size.square(icon),
iconColor: Theme.of(context).colorScheme.primary,
)
: Icon(
Icons.rss_feed,
size: icon,
color: Theme.of(context).colorScheme.primary,
),
2 years ago
);
}