From f0d6d0b8e1f165ec131b11b5f9db37701ce8dabc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Sun, 11 Jan 2026 04:27:18 +0100 Subject: [PATCH] Add NoSplash effect to TextButton styles for improved UX --- b0esche_cloud/lib/pages/home_page.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/b0esche_cloud/lib/pages/home_page.dart b/b0esche_cloud/lib/pages/home_page.dart index fd197e8..3ded9bb 100644 --- a/b0esche_cloud/lib/pages/home_page.dart +++ b/b0esche_cloud/lib/pages/home_page.dart @@ -235,6 +235,7 @@ class _HomePageState extends State with TickerProviderStateMixin { final highlightColor = const Color.fromARGB(255, 100, 200, 255); final defaultColor = AppTheme.secondaryText; return TextButton( + style: ButtonStyle(splashFactory: NoSplash.splashFactory), onPressed: onTap, child: Text( org.name, @@ -250,6 +251,7 @@ class _HomePageState extends State with TickerProviderStateMixin { final highlightColor = const Color.fromARGB(255, 100, 200, 255); final defaultColor = AppTheme.secondaryText; return TextButton( + style: ButtonStyle(splashFactory: NoSplash.splashFactory), onPressed: onTap, child: Text( 'Personal', @@ -264,6 +266,7 @@ class _HomePageState extends State with TickerProviderStateMixin { Widget _buildAddButton(VoidCallback onTap) { final defaultColor = AppTheme.secondaryText; return TextButton( + style: ButtonStyle(splashFactory: NoSplash.splashFactory), onPressed: onTap, child: Text('+ Add Organization', style: TextStyle(color: defaultColor)), );