Skip to content

Package has moved to an organization

Pierre Champion | Drakirus edited this page Jan 9, 2020 · 4 revisions

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!

  1. Change any import path from github.com/Drakirus/go-flutter-desktop-embedder to github.com/go-flutter-desktop/go-flutter.
  2. Rename use of the package gutter to flutter. 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!