mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-21 02:58:55 +00:00
- implement the basic Onboarding UI skeleton and the Create Profile flows - adjust the PasswordView and EnterSeedPhrase views to the latest design - add the main OnboardingLayout and StatusPinInput pages to Storybook - change terminology app-wide: "Seed phrase" -> "Recovery phrase" - implement the Login flows (seed, sync, keycard) - amend the keycard flow sequences with separate (non) empty page Fixes #16719 Fixes #16742 Fixes #16743
19 lines
651 B
QML
19 lines
651 B
QML
import QtQuick 2.13
|
|
|
|
ListModel {
|
|
id: root
|
|
|
|
Component.onCompleted: {
|
|
var englishWords = [
|
|
"age", "agent", "apple", "banana", "cat", "cow", "catalog", "catch", "category", "cattle", "dog", "elephant", "fish", "grape", "horse", "icecream", "jellyfish",
|
|
"kiwi", "lemon", "mango", "nut", "orange", "pear", "quail", "rabbit", "strawberry", "turtle",
|
|
"umbrella", "violet", "watermelon", "xylophone", "yogurt", "zebra"
|
|
// Add more English words here...
|
|
];
|
|
|
|
for (var i = 0; i < englishWords.length; i++) {
|
|
root.append({ seedWord: englishWords[i] });
|
|
}
|
|
}
|
|
}
|