theme property

WiredashThemeData? theme
final

Default visual properties, like colors and fonts for the Wiredash bottom sheet and the screenshot capture UI.

Dark and light themes are supported, try it!

return Wiredash(
  projectId: "...",
  secret: "...",
  theme: WiredashThemeData.fromColor(
    primaryColor: Colors.indigo,
    brightness: Brightness.dark,
  ).copyWith(
    // further customizations
  ),
  child: MyApp(),
);

Implementation

final WiredashThemeData? theme;