-
Notifications
You must be signed in to change notification settings - Fork 282
Package has moved to an organization
The Drakirus/go-flutter-desktop-embedder
package has moved to go-flutter-desktop/go-flutter
. This move originated from issue #72.
Together with the move, some breaking changes were made. To avoid breaking existing usage of the package, the last compatible version has been forked back to Drakirus/go-flutter-desktop-embedder
. That fork now prints a warning message to standard output and will not be receiving any updates. To continue using go-flutter, updating is necessary.
Updating is simple!
- Change any import path from
github.com/Drakirus/go-flutter-desktop-embedder
togithub.com/go-flutter-desktop/go-flutter
. - Rename use of the package
gutter
toflutter
. For example:
gutter.ProjectAssetPath( ... )
Now becomes:
flutter.ProjectAssetPath( ... )
That's it!
If you used the embedder package directly (that package was previously located at github.com/Drakirus/go-flutter-desktop-embedder/flutter
), then you will likely need to make more changes. Please check out the new documentation for it at https://godoc.org/github.com/go-flutter-desktop/go-flutter/embedder
Many thanks to p.champion | Drakirus for creating go-flutter!