Last updated:
0 purchases
mnemonic phrase
Mnemonic Phrase plugins #
A flutter package that displays a mnemonic phrase / allows users to provide a mnemonic phrase.
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')
copied to clipboard
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);
},
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.