Initial commit
This commit is contained in:
@@ -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",
|
||||
),
|
||||
];
|
||||
Reference in New Issue
Block a user