Domingo
Daily Word Puzzle
App Concept
Domingo is an iOS puzzle app drawing inspiration from Wordle with a new 'Daily Puzzle’ available each day, as well as 30+ categories playable anytime. It's published on the AppStore – download it here!
App Store Description
Challenge your brain with Domingo's creative daily puzzles. With a new theme everyday, there’s no better way to engage your brain over breakfast or brighten up your commute!
- A new daily puzzle every single day
- Over 30 categories to explore at your leisure
- Replay any past daily puzzle with Archive Mode
- Get competitive by tracking your statistics
- Enable hard mode for a more demanding experience
The daily puzzle and the first two categories are free to enjoy forever, with Archive Mode and the remaining categories unlockable through a small one-off purchase.
How to Play
Domingo is a game about words within words. In this example the theme is animals. To solve the puzzle, replace each ‘❖’ with an animal to form a word. For example, Ex ❖ ble = Expandable!
- Un ❖ able
- Dism ❖ le
- A ❖ t
- Bene ❖ nt
Play Online
For Android users or those who simply prefer a larger screen, the daily puzzle can also be played online through the official Domingo website!
Privacy Policy
The app does not provide any services that may be used to identify or track you. No third parties have access to your data or perform analytics. The only data stored by the Domingo app is the following, which is stored exclusively on-device:
- Progress on the puzzles included in the app
- Simple statistics such as total number of guesses made
- User preferences
Code Available on GitHub
I've made the app's code public on my GitHub.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import SwiftUI
// The overarching view for all sheet-based puzzle modes
// (i.e. for daily, archived and random puzzles)
struct GameView: View {
@StateObject var gameModel: GameModel
@Namespace var namespace
var body: some View {
Group {
switch gameModel.gameState {
case .welcome:
WelcomeView(namespace: namespace)
case .inProgress:
PuzzleView(namespace: namespace)
case .complete:
CompleteView(namespace: namespace)
}
}
.environmentObject(gameModel)
}
}
Download on the App Store
Domingo is available now on the AppStore for iPhone and iPad. Click the button below to visit the AppStore page!
Back to Home Page