https://github.com/ericwindmill/legal_wordle_words
A list of legal wordle words in Dart
https://github.com/ericwindmill/legal_wordle_words
Last synced: 8 months ago
JSON representation
A list of legal wordle words in Dart
- Host: GitHub
- URL: https://github.com/ericwindmill/legal_wordle_words
- Owner: ericwindmill
- Created: 2025-10-17T18:13:57.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-10-17T18:21:30.000Z (8 months ago)
- Last Synced: 2025-10-18T20:44:18.413Z (8 months ago)
- Language: Dart
- Size: 36.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
A repository that contains two `List` objects:
1. `legalWords`, which contains all of the legal words in Wordle (as of early 2025)
2. `legalGuesses`, which contains all of the additional words that are legal guesses in Wordle (as of early 2025)
Use them in your Dart implementation of Wordle-like games, add the following to your `pubspec.yaml`
```yaml
dependencies:
legal_wordle_words:
git: https://github.com/ericwindmill/legal_wordle_words
```
If you're following the [Flutter Getting Started tutorial](https://docs.flutter.dev/tutorial), you can use these lists with the following steps:
1. Add the above to your `pubspec.yaml`, and then run `pub get` in your terminal at the project root.
2. open your `game.dart` file and make these changes:
REMOVE **ony** the `legalWords` and `legalGuesses` variables.
ADD the import: `import 'package:legal_wordle_words/legal_wordle_words.dart';`
You're all set.