File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
lib/shared/widgets/feed_core Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 11import 'package:core/core.dart' ;
22import 'package:flutter/material.dart' ;
3- import 'package:flutter_news_app_mobile_client_full_source_code/shared/widgets/feed_core/headline_metadata_row .dart' ;
3+ import 'package:flutter_news_app_mobile_client_full_source_code/shared/widgets/feed_core/headline_source_row .dart' ;
44import 'package:flutter_news_app_mobile_client_full_source_code/shared/widgets/feed_core/headline_tap_handler.dart' ;
55import 'package:ui_kit/ui_kit.dart' ;
66
@@ -58,6 +58,8 @@ class HeadlineTileTextOnly extends StatelessWidget {
5858 child: Column (
5959 crossAxisAlignment: CrossAxisAlignment .start,
6060 children: [
61+ HeadlineSourceRow (headline: headline),
62+ const SizedBox (height: AppSpacing .sm),
6163 Text (
6264 headline.title,
6365 style: textTheme.titleMedium? .copyWith (
@@ -66,14 +68,6 @@ class HeadlineTileTextOnly extends StatelessWidget {
6668 maxLines: 3 ,
6769 overflow: TextOverflow .ellipsis,
6870 ),
69- const SizedBox (height: AppSpacing .sm),
70- HeadlineMetadataRow (
71- headline: headline,
72- colorScheme: theme.colorScheme,
73- textTheme: textTheme,
74- currentContextEntityType: currentContextEntityType,
75- currentContextEntityId: currentContextEntityId,
76- ),
7771 ],
7872 ),
7973 ),
You can’t perform that action at this time.
0 commit comments