Answers for "flutter save image to storage"

5

image from assets in flutter

Widget build(BuildContext context) {
  return Image(image: AssetImage('graphics/background.png'));
}
Posted by: Guest on August-13-2021
0

get avarae image from like flutter

CircleAvatar(
                radius: 30.0,
                backgroundImage:
                    NetworkImage("${snapshot.data.hitsList[index].previewUrl}"),
                backgroundColor: Colors.transparent,
              )
Posted by: Guest on May-07-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language