-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): revamp sudoku home page ui
- Loading branch information
1 parent
a9f5728
commit df93577
Showing
15 changed files
with
1,442 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/// Defines the assets for the Sudoku App UI. | ||
abstract class Assets { | ||
/// Daily Challenge icon. | ||
static const dailyChallengeIcon = 'assets/icons/challenge.png'; | ||
|
||
/// Unfinished Puzzle icon. | ||
static const unfinishedPuzzleIcon = 'assets/icons/unfinished.png'; | ||
|
||
/// Easy Puzzle icon. | ||
static const easyPuzzleIcon = 'assets/icons/easy.png'; | ||
|
||
/// Medium Puzzle icon. | ||
static const mediumPuzzleIcon = 'assets/icons/medium.png'; | ||
|
||
/// Difficult Puzzle icon. | ||
static const difficultPuzzleIcon = 'assets/icons/difficult.png'; | ||
|
||
/// Expert Puzzle icon. | ||
static const expertPuzzleIcon = 'assets/icons/expert.png'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import 'dart:ui'; | ||
|
||
/// Defines the colors used in the Sudoku App UI. | ||
abstract class SudokuColors { | ||
/// dark Pink | ||
static const lightPink = Color(0xFFFF80B5); | ||
|
||
/// Light Purple | ||
static const lightPurple = Color(0xFF9089FC); | ||
|
||
/// Dark Pink | ||
static const darkPink = Color(0xFFC7649F); | ||
|
||
/// Dark Purple | ||
static const darkPurple = Color(0xFF6C63C7); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export 'view/home_page.dart'; |
Oops, something went wrong.