Welcomes contribution from everyone.
Usage
FutureBuilder(
future: BingWallpepar().getWallpepar(),
builder: (BuildContext context, AsyncSnapshot<String> snapshot) {
if (snapshot.hasData) {
return Image.network(
snapshot.data as String,
fit: BoxFit.cover,
width: size.width,
height: size.height,
);
} else {
return Container();
}
},
),
Additional information
TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.