Yes/no buttons

This commit is contained in:
laurenspriem
2025-06-28 09:59:15 +05:30
parent eb75b2addf
commit ccaa00152e

View File

@@ -475,9 +475,7 @@ class _PersonGallerySuggestionState extends State<PersonGallerySuggestion>
),
const SizedBox(width: 8),
Text(
personPage
? S.of(context).no
: S.of(context).different,
S.of(context).no,
style: (personPage
? textTheme.bodyBold
: textTheme.body)
@@ -514,9 +512,7 @@ class _PersonGallerySuggestionState extends State<PersonGallerySuggestion>
),
const SizedBox(width: 8),
Text(
personPage
? S.of(context).yes
: S.of(context).same,
S.of(context).yes,
style: (personPage
? textTheme.bodyBold
: textTheme.body)