-
-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working on Windows #167
Comments
After removing all references to |
Same issue here. > After removing all references to |
You can disambiguate the import 'package:flutter/widgets.dart' hide Key;
import 'package:flutter/widgets.dart' as flutter;
import 'package:puppeteer/puppeteer.dart' hide Key;
import 'package:puppeteer/puppeteer.dart' as puppeteer;
void main() {
var flutterKey = flutter.Key('key'); // Flutter Key
puppeteer.Key.meta; // Puppeteer key
} |
If someone can share a full reproducible example, I can take a look. |
I have just tried using the package with the flutter demo counter app and got an error
error G9AFD0082: 'Key' is imported from both 'package:flutter/src/foundation/key.dart' and 'package:puppeteer/src/page/keyboard.dart'.
The text was updated successfully, but these errors were encountered: