-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(app): add Comprehension Measurement Helper
- Loading branch information
1 parent
9c48ba3
commit 21cfd5b
Showing
3 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import 'module.dart'; | ||
|
||
class ComprehensionMeasurement { | ||
static bool shouldMeasure = false; | ||
|
||
static void attach( | ||
Future future, { | ||
required BuildContext context, | ||
}) { | ||
ComprehensionMeasurement.shouldMeasure = true; | ||
future.then((_) => ComprehensionMeasurement.measure(context)); | ||
} | ||
|
||
static void measure(BuildContext context) { | ||
if (!shouldMeasure) return; | ||
ScaffoldMessenger.of(context).showSnackBar(SnackBar( | ||
content: Text('TODO: Measure Comprehension'), | ||
)); | ||
shouldMeasure = false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters