Skip to content

Instantly share code, notes, and snippets.

@sixtusagbo
Forked from Piinks/main.dart
Created March 24, 2026 23:32
Show Gist options
  • Select an option

  • Save sixtusagbo/fbb18c91994f2b041bc81cf2f8629dff to your computer and use it in GitHub Desktop.

Select an option

Save sixtusagbo/fbb18c91994f2b041bc81cf2f8629dff to your computer and use it in GitHub Desktop.
Disable Material splash through theme
// Disabling Material splash effects globally
ThemeData(
useMaterial3: true,
// This removes the ink ripple effect
splashFactory: NoSplash.splashFactory,
// This removes the highlight effect (the solid color change on press)
highlightColor: Colors.transparent,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment