Initial commit

This commit is contained in:
2026-04-24 23:31:40 -05:00
commit b5fd617592
152 changed files with 6980 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import '../models/dinosaur.dart';
final List<Dinosaur> allDinosaurs = [
Dinosaur(
name: "Tyrannosaurus Rex",
pronunciation: "tie-RAN-oh-SORE-us",
meaning: "Tyrant Lizard King",
classification: "Theropod",
dietType: "Carnivore",
locomotion: "Bipedal",
period: "Late Cretaceous",
weight: "8,000 kg",
description: "T-Rex was one of the largest land carnivores of all time.",
imagePath: "assets/trex.png", // Make sure to add this image to your assets folder!
),
// Add more Dinosaur objects here...
Dinosaur(
name: "Triceratops",
pronunciation: "tri-SER-a-tops",
meaning: "Three-horned face",
classification: "Ceratopsian",
dietType: "Herbivore",
locomotion: "Quadrupedal",
period: "Late Cretaceous",
weight: "12,000 kg",
description: "Recognizable by its three horns and large bony frill...",
imagePath: "assets/triceratops.png",
),
];