Documentation Index
Fetch the complete documentation index at: https://starrycodes.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
š Flutter_Extend Version 0.3.0 is now live! See our changelog for details.
Instantly retrieve your applicationās ThemeData, ColorScheme, and TextTheme with simple context getters, ensuring design consistency across your app.
Documentation Index
Fetch the complete documentation index at: https://starrycodes.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
ThemeData. The top-level shortcut for any theme property.final background = context.theme.scaffoldBackgroundColor;
ColorScheme. Recommended for accessing semantic colors like primary, error, and surface.Container(
color: context.colorScheme.primary,
);
TextTheme. Provides quick access to standard styles (e.g., headline, title, body).Text(
"Welcome",
style: context.textTheme.headlineLarge,
);
IconThemeData. Use this to find the default color and size for your icons.Icon(
Icons.star,
color: context.iconTheme.color,
);
Was this page helpful?