timmaffett / material_symbols_icons

Complete Flutter support for google's Material DesignMaterial Symbols Icons
Apache License 2.0
32 stars 5 forks source link

Wrong import path separator used in readme example #18

Closed dhafinrayhan closed 3 months ago

dhafinrayhan commented 3 months ago

In the readme, the example code for importing the package is:

import 'material_symbols_icons\symbols.dart'

This is wrong, because Dart imports use slash (/) rather than backslash (\).

Thanks to user MendelG in stackoverflow.com for figuring out.

timmaffett commented 3 months ago

Great catch. It is also missing the 'package:' prefix. I merged you pull request and added the package: as well.

Thanks!