SpriteButton.asset constructor
SpriteButton.asset({
- required String path,
- required String pressedPath,
- required VoidCallback onPressed,
- required double width,
- required double height,
- required Widget label,
- Images? images,
- Vector2? srcPosition,
- Vector2? srcSize,
- Vector2? pressedSrcPosition,
- Vector2? pressedSrcSize,
- WidgetBuilder? errorBuilder,
- WidgetBuilder? loadingBuilder,
- Key? key,
Loads the images from the asset path
and pressedPath
and renders
it as a widget.
It will use the loadingBuilder
while the image from path
is loading.
To render without loading, or when you want to have a gapless playback
when the path
value changes, consider loading the image beforehand
and direct pass it to the default constructor.
Implementation
SpriteButton.asset({
required String path,
required String pressedPath,
required this.onPressed,
required this.width,
required this.height,
required this.label,
Images? images,
this.srcPosition,
this.srcSize,
this.pressedSrcPosition,
this.pressedSrcSize,
this.errorBuilder,
this.loadingBuilder,
super.key,
}) : _buttonsFuture = Future.wait([
Sprite.load(
path,
srcSize: srcSize,
srcPosition: srcPosition,
images: images,
),
Sprite.load(
pressedPath,
srcSize: pressedSrcSize,
srcPosition: pressedSrcPosition,
images: images,
),
]);