Skip to content

Commit

Permalink
solved issue VaibhavCodeClub#136
Browse files Browse the repository at this point in the history
  • Loading branch information
hiranj-kotak committed May 23, 2024
1 parent d75d66d commit 17323a4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions lib/utils/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,34 +39,34 @@ class AppConstants {
Module(
name: 'A-Z',
description: 'Learn A to Z with production and an example',
thumbnailPath: 'assets/images/alphabets.jpg',
thumbnailPath: AssetsPath.getAlphabetImage(Alphabets.alphabets),
route: MaterialPageRoute(builder: (context) => const AtoZ()),
backgroundColor: const Color.fromARGB(193, 76, 175, 79),
),
Module(
name: 'Animals',
description: 'Learn about animals and their sounds',
thumbnailPath: 'assets/images/animals.jpg',
thumbnailPath: AssetsPath.getAnimalImage(Animals.animals),
route: MaterialPageRoute(builder: (context) => AnimalsPage()),
backgroundColor: const Color.fromARGB(194, 157, 82, 222),
),
Module(
name: 'Birds',
description: 'Look out for Birds with their sounds',
thumbnailPath: 'assets/images/birds.jpg',
thumbnailPath: AssetsPath.getBirdImage(Birds.birds),
route: MaterialPageRoute(builder: (context) => BirdsPage()),
backgroundColor: const Color.fromARGB(193, 76, 207, 222),
),
Module(
name: "Colors",
description: "Explore and Learn about the colors",
thumbnailPath: "assets/colours/colours-cover.png",
thumbnailPath: AssetsPath.getColoursImage(ColorImages.colorsCover),
route: MaterialPageRoute(builder: (context) => const ColoursPage()),
backgroundColor: const Color.fromARGB(193, 21, 234, 28)),
Module(
name: 'Body Parts',
description: 'Know about body parts and their pronunciation.',
thumbnailPath: 'assets/body/body.jpg',
thumbnailPath: AssetsPath.getBodyImage(Body.body),
route: MaterialPageRoute(builder: (context) => const PartsPage()),
backgroundColor: const Color.fromARGB(157, 251, 0, 0),
),
Expand All @@ -80,7 +80,7 @@ class AppConstants {
Module(
name: 'Solar System',
description: 'Learn about the solar system',
thumbnailPath: 'assets/images/solar.gif',
thumbnailPath: "assets/images/solar/solar.gif",
route: MaterialPageRoute(builder: (context) => PlanetsPage()),
backgroundColor: const Color.fromARGB(193, 226, 221, 70),
),
Expand Down Expand Up @@ -318,7 +318,7 @@ class AppConstants {
Animal(
name: 'Goat',
svgAsset: AssetsPath.getAnimalImage(Animals.goat),
soundAsset:AssetsPath.getAnimalSound(Animals.goatSound),
soundAsset: AssetsPath.getAnimalSound(Animals.goatSound),
backgroundColor: const Color.fromARGB(138, 48, 59, 48),
),
Animal(
Expand Down Expand Up @@ -366,7 +366,7 @@ class AppConstants {
Animal(
name: 'Zebra',
svgAsset: AssetsPath.getAnimalImage(Animals.zebra),
soundAsset:AssetsPath.getAnimalSound(Animals.zebraSound),
soundAsset: AssetsPath.getAnimalSound(Animals.zebraSound),
backgroundColor: const Color.fromARGB(193, 187, 74, 178),
),
Animal(
Expand All @@ -384,7 +384,7 @@ class AppConstants {
Animal(
name: 'Horse',
svgAsset: AssetsPath.getAnimalImage(Animals.horse),
soundAsset:AssetsPath.getAnimalSound(Animals.horseSound),
soundAsset: AssetsPath.getAnimalSound(Animals.horseSound),
backgroundColor: const Color.fromARGB(98, 243, 201, 33),
),
Animal(
Expand Down Expand Up @@ -513,7 +513,7 @@ class AppConstants {
Bird(
name: 'Koel',
svgAsset: AssetsPath.getBirdImage(Birds.koel),
soundAsset:AssetsPath.getBirdSound(Birds.koelSound),
soundAsset: AssetsPath.getBirdSound(Birds.koelSound),
backgroundColor: const Color.fromARGB(232, 141, 255, 93),
),
Bird(
Expand Down

0 comments on commit 17323a4

Please sign in to comment.