buildSandboxedTheme function
Implementation
SandboxedTheme buildSandboxedTheme(BuildContext context, WidgetRef ref) {
return SandboxedTheme(
brandColor: ref.watch(brandColorProvider),
codeStyle: GoogleFonts.jetBrainsMono(),
tileTheme: ElementTileThemeData(
dense: ref.watch(
settingStorageProvider.select(
(value) => value.denseExplorer,
),
),
),
);
}