29 lines
924 B
Dart
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",
|
|
),
|
|
]; |