Text' is imported from both Platforms

850 Views Asked by At

i am working on a flutter project. I am creating an app that could run on both mobile and web simultenously. for platform checking i used kIsWeb constant which is working fine on Web but when i run the app on Mobile (android) then it says that some of widgets are imported for both packages like in this example.

Text' is imported from both 'package:universal_html/src/html.dart' and 'package:flutter/src/widgets/text.dart'.

i google it and i found a package universal_html but when i used this imprt in my project this gave mein the same error. is there any thing that i am missing from my code ? if yes. then highlight my mistake and guid me in this regard.

1

There are 1 best solutions below

0
On

This happened because you export Text in both universal_html and flutter package, I recommend use prefiex on universal_html like this:

import 'package:universal_html/src/html.dart' as universal_html;

and use it like this for example:

final div = universal_html.DivElement();