Enable users to switch between theme modes and custom themes in your Neo application using the built-in theme provider.
Neo provides built-in theme switching capabilities through the neoCurrentThemeProvider. You can switch between theme modes (light, dark, system) or switch to completely different custom themes.
// Switch to a specific moderef.read(neoCurrentThemeProvider.notifier).updateTheme(mode: NeoThemeMode.dark);// Switch to system moderef.read(neoCurrentThemeProvider.notifier).updateTheme(mode: NeoThemeMode.system);