Mnemonic Phrase plugins

pub package

A flutter package that displays a mnemonic phrase / allows users to provide a mnemonic phrase.

demo

Example

There are two separate plugins: one for display and one for input. See the full example app in `/example' folder of the repository.

Display

  MnemonicPhrase(phrase: 'favorite robot woman shy observe crazy prefer script tonight eight actress kit')

Input

  MnemonicPhraseInput(
    // onPhraseChange is executed every single time the user changes the phrase
    // Will return null if the phrase is incomplete/invalid, otherwise will return a phrase
    onPhraseChange: (value) {
      print(value);
    },
  ),