You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -51,8 +51,8 @@ Forui includes predefined themes that can be used out of the box. They are heavi
51
51
title: Forui Theming System
52
52
---
53
53
classDiagram
54
-
class FTheme {
55
-
+FTheme(...)
54
+
class FAnimatedTheme {
55
+
+FAnimatedTheme(...)
56
56
}
57
57
58
58
class FThemeData {
@@ -78,7 +78,7 @@ class FAccordionStyle {
78
78
}
79
79
note for FAccordionStyle "Each Forui widget has a corresponding style.\nWe use FAccordionStyle here as an example."
80
80
81
-
FTheme --> FThemeData
81
+
FAnimatedTheme --> FThemeData
82
82
FThemeData --> FColors
83
83
FThemeData --> FTypography
84
84
FThemeData --> FStyle
@@ -87,7 +87,7 @@ FThemeData --> FAccordionStyle
87
87
88
88
There are **5** core components in Forui's theming system.
89
89
90
-
-**[`FTheme`](https://pub.dev/documentation/forui/latest/forui.theme/FTheme-class.html)**: The root widget that provides the theme data to all widgets in the subtree.
90
+
-**[`FAnimatedTheme`](https://pub.dev/documentation/forui/latest/forui.theme/FAnimatedTheme-class.html)**: The root widget that provides the theme data to all widgets in the subtree.
91
91
-**[`FThemeData`](https://pub.dev/documentation/forui/latest/forui.theme/FThemeData-class.html)**: Main class that holds:
92
92
-**[`FColors`](https://pub.dev/documentation/forui/latest/forui.theme/FColors-class.html)**: Color scheme including primary, foreground, and background colors.
93
93
-**[`FTypography`](https://pub.dev/documentation/forui/latest/forui.theme/FTypography-class.html)**: Typography settings including font family and text styles.
@@ -173,7 +173,7 @@ method is provided to quickly scale all the font sizes.
0 commit comments