From bb31f225d01c982213d6453b35c4dac438608bdf Mon Sep 17 00:00:00 2001 From: ospab Date: Tue, 23 Jun 2026 00:49:37 +0300 Subject: [PATCH] fix(flutter): share button text color --- ostp-flutter/lib/ui/settings_screen.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ostp-flutter/lib/ui/settings_screen.dart b/ostp-flutter/lib/ui/settings_screen.dart index f5e6bb2..d88fb5f 100644 --- a/ostp-flutter/lib/ui/settings_screen.dart +++ b/ostp-flutter/lib/ui/settings_screen.dart @@ -581,10 +581,10 @@ class _SettingsScreenState extends State { ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text('Copied to clipboard'))); Navigator.pop(context); }, - icon: const Icon(Icons.copy_rounded, color: Colors.white), - label: const Text('Copy Link', style: TextStyle(color: Colors.white)), + icon: const Icon(Icons.copy_rounded, color: Colors.black), + label: const Text('Copy Link', style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold)), style: ElevatedButton.styleFrom( - backgroundColor: Theme.of(context).colorScheme.primary, + backgroundColor: Colors.white, padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 12), shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)), ),