【发布时间】:2018-06-17 20:26:21
【问题描述】:
我正在尝试做一些教程,在将类对象传递给我的小部件时遇到了一些问题,我完全迷失了这个......
class Planet {
String id;
String name;
String location;
String distance;
String gravity;
String description;
String image;
String picture;
Planet({this.id, this.name, this.location, this.distance, this.gravity, this.description, this.image, this.picture});
}
List<Planet> planets = <Planet>[
Planet(
id: "1",
name: "Mars",
location: "Milkyway Galaxy",
distance: "54.6m Km",
gravity: "3.711 m/s ",
description:
"Mars is the fourth planet from the Sun and the second-smallest planet in the Solar System after Mercury. In English, Mars carries a name of the Roman god of war, and is often referred to as the 'Red Planet' because the reddish iron oxide prevalent on its surface gives it a reddish appearance that is distinctive among the astronomical bodies visible to the naked eye. Mars is a terrestrial planet with a thin atmosphere, having surface features reminiscent both of the impact craters of the Moon and the valleys, deserts, and polar ice caps of Earth.",
image: "assets/images/mars.png",
picture: "https://www.nasa.gov/sites/default/files/thumbnails/image/pia21723-16.jpg"),
];
在我的小部件中我有:
class PlanetSummary extends StatelessWidget {
final Planet planet;
PlanetSummary(this.planet);
final Widget _planetThumbnail = new Container(
margin: new EdgeInsets.symmetric(vertical: 16.0),
alignment: FractionalOffset.centerLeft,
child: new Image(
image: new AssetImage(planet.image), // <---- ERROR (planet.name) only static member can be accessed in initializers
height: 92.0,
width: 92.0,
),
);
我完全不明白这个错误有人可以帮忙吗?
【问题讨论】:
-
@RaoufRahiche 即使那个问题根本没有给我任何线索,不幸的是我该如何解决我的问题.. :(