Files
Dino-Field-Guide/lib/data/dino_data.dart
T
2026-04-24 23:31:40 -05:00

29 lines
924 B
Dart

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",
),
];