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
That ActivateIntent you see comes from the flutter SDK and is required. If i do import 'package:flutter/material.dart' hide Intent; then ActivateIntent doesn't compile anymore.
To Reproduce
Steps to reproduce the behavior:
^^ Above
Expected behavior
Should not break shortcuts.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Emulator
Smartphone (please complete the following information):
Emulator
Additional context
N/A
The text was updated successfully, but these errors were encountered:
There's no incompatibility here. When two Dart libraries you want to use each define something with the same name, you can always resolve the name conflict by importing with a library prefix. See the Dart documentation: https://dart.dev/language/libraries#specifying-a-library-prefix
Describe the bug
I'm using Shartcuts to handle non-touch input (like enter).
Like so:
That
ActivateIntent
you see comes from the flutter SDK and is required. If i doimport 'package:flutter/material.dart' hide Intent;
thenActivateIntent
doesn't compile anymore.To Reproduce
Steps to reproduce the behavior:
^^ Above
Expected behavior
Should not break shortcuts.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Emulator
Smartphone (please complete the following information):
Emulator
Additional context
N/A
The text was updated successfully, but these errors were encountered: