fix(flutter): share button text color

This commit is contained in:
ospab 2026-06-23 00:49:37 +03:00
parent 4775559960
commit bb31f225d0
1 changed files with 3 additions and 3 deletions

View File

@ -581,10 +581,10 @@ class _SettingsScreenState extends State<SettingsScreen> {
ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text('Copied to clipboard'))); ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text('Copied to clipboard')));
Navigator.pop(context); Navigator.pop(context);
}, },
icon: const Icon(Icons.copy_rounded, color: Colors.white), icon: const Icon(Icons.copy_rounded, color: Colors.black),
label: const Text('Copy Link', style: TextStyle(color: Colors.white)), label: const Text('Copy Link', style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold)),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
backgroundColor: Theme.of(context).colorScheme.primary, backgroundColor: Colors.white,
padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 12), padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 12),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)), shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
), ),