This file contains hidden or 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
| import 'dart:async'; | |
| import 'package:flutter/foundation.dart'; | |
| import 'package:flutter/material.dart'; | |
| // A counter app shows basic Creator/Watcher usage. | |
| // Creator creates a stream of data. | |
| final counter = Creator.value(0); | |
| void main() { |