Skip to content

ioridev/bing_wallpaper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcomes contribution from everyone.

ko-fi
Get a random bing wallpepar.

スクリーンショット 2022-02-04 23 59 45

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.