simpleTestTheme property
ThemeData
get
simpleTestTheme
Get a simple test theme that doesn't use Google Fonts.
Use this when you want to avoid any font-related issues in tests.
Implementation
static ThemeData get simpleTestTheme {
return _testTheme ??
ThemeData(
useMaterial3: true,
brightness: Brightness.light,
fontFamily: null, // Use default system font
);
}