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.
|
|
|
part of '../neon_news.dart';
|
|
|
|
|
|
|
|
class NewsFeedIcon extends StatelessWidget {
|
|
|
|
const NewsFeedIcon({
|
|
|
|
required this.feed,
|
|
|
|
this.size = largeIconSize,
|
|
|
|
this.borderRadius,
|
|
|
|
super.key,
|
|
|
|
});
|
|
|
|
|
|
|
|
final NewsFeed feed;
|
|
|
|
final double size;
|
|
|
|
final BorderRadius? borderRadius;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(final BuildContext context) {
|
|
|
|
final faviconLink = feed.faviconLink;
|
|
|
|
|
|
|
|
return NeonImageWrapper(
|
|
|
|
size: Size.square(size),
|
|
|
|
borderRadius: borderRadius,
|
|
|
|
child: faviconLink != null && faviconLink.isNotEmpty
|
|
|
|
? NeonCachedImage.url(
|
|
|
|
url: faviconLink,
|
|
|
|
size: Size.square(size),
|
|
|
|
)
|
|
|
|
: Icon(
|
|
|
|
Icons.rss_feed,
|
|
|
|
size: size,
|
|
|
|
color: Theme.of(context).colorScheme.primary,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|