transparent_image
Dart कोड में एक स्पष्ट छवि, Uint8List के रूप में प्रतिनिधित्व की गई।
Dart कोड में एक स्पष्ट छवि, Uint8List के रूप में प्रतिनिधित्व की गई।
यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
A simple transparent image. Represented as a Uint8List, which was originally extracted from the Flutter codebase (was private in the test package).
It's a silly, simple library, but I found I needed transparent images in a few projects and found this is the simplest way to represent it :)
This package exports one constant: kTransparentImage.
Displays the transparent image.
Image.memory(kTransparentImage);
MemoryImage(kTransparentImage);
A more useful example, and the reason I originally extracted this from the Flutter codebase!
A complete example can be seen on the Flutter website.
FadeInImage.memoryNetwork(
placeholder: kTransparentImage,
image: 'https://picsum.photos/250?image=9',
),
);