I need the import dart html (import 'dart:html' as html;
) for the web version of my flutter app. Will using this import prevent me from building the iOS version of the app?
Asked
Active
Viewed 992 times
0

flutter
- 6,188
- 9
- 45
- 78
-
1You should use conditional imports, see this answer https://stackoverflow.com/questions/58710226/how-to-import-platform-specific-dependency-in-flutter-dart-combine-web-with-an/58713064#58713064 – croxx5f Nov 21 '21 at 21:53
-
Yes it will. See https://stackoverflow.com/questions/58710226/how-to-import-platform-specific-dependency-in-flutter-dart-combine-web-with-an/58713064#58713064 – Sunil Gupta Feb 22 '22 at 06:29