mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-21 16:01:58 +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(
|
titleDescription: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Wrap(
|
||||||
widget.manga.author ?? "Unknown",
|
crossAxisAlignment: WrapCrossAlignment.center,
|
||||||
style: const TextStyle(fontWeight: FontWeight.w500),
|
children: [
|
||||||
|
Icon(Icons.person_outline, size: 14),
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
Text(
|
||||||
|
widget.manga.author ?? l10n.unknown,
|
||||||
|
style: const TextStyle(fontWeight: FontWeight.w500),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
Wrap(
|
Wrap(
|
||||||
crossAxisAlignment: WrapCrossAlignment.center,
|
crossAxisAlignment: WrapCrossAlignment.center,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue