We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9718958 commit ba9d37fCopy full SHA for ba9d37f
lib/src/api/mixins.dart
@@ -189,6 +189,12 @@ mixin ReactionMixin {
189
[TriggerType.click, TriggerType.longPress];
190
}
191
192
+/// A mixin that holds the children of the node that are reactive, i.e., can
193
+/// perform actions on triggers. For ex. [NavigationBarNode].
194
+mixin ParentReactionMixin {
195
+ List<ReactionMixin> get reactiveChildren;
196
+}
197
+
198
/// A mixin that allows the node to have children.
199
///
200
/// To use, include the mixin in the class definition and call
0 commit comments