mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-01-11 22:40:36 +00:00
Enhance author display in MangaDetailsView with an icon
This commit is contained in:
parent
75472aed62
commit
fef6ffd65b
1 changed files with 10 additions and 3 deletions
|
|
@ -163,9 +163,16 @@ class _MangaDetailsViewState extends ConsumerState<MangaDetailsView> {
|
|||
titleDescription: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
widget.manga.author ?? "Unknown",
|
||||
style: const TextStyle(fontWeight: FontWeight.w500),
|
||||
Wrap(
|
||||
crossAxisAlignment: WrapCrossAlignment.center,
|
||||
children: [
|
||||
Icon(Icons.person_outline, size: 14),
|
||||
const SizedBox(width: 4),
|
||||
Text(
|
||||
widget.manga.author ?? l10n.unknown,
|
||||
style: const TextStyle(fontWeight: FontWeight.w500),
|
||||
),
|
||||
],
|
||||
),
|
||||
Wrap(
|
||||
crossAxisAlignment: WrapCrossAlignment.center,
|
||||
|
|
|
|||
Loading…
Reference in a new issue