chore: Fix button visibility

This commit is contained in:
Krille Fear 2021-12-31 10:17:15 +01:00
parent 6601dc4bf0
commit 875a978caa

View File

@ -342,14 +342,8 @@ class StoryView extends StatelessWidget {
Theme.of(context).colorScheme.surface, Theme.of(context).colorScheme.surface,
), ),
onPressed: controller.displaySeenByUsers, onPressed: controller.displaySeenByUsers,
icon: const Icon( icon: const Icon(Icons.visibility_outlined),
Icons.visibility_outlined, label: Text(controller.seenByUsersTitle),
color: Colors.white70,
),
label: Text(
controller.seenByUsersTitle,
style: const TextStyle(color: Colors.white70),
),
), ),
), ),
), ),