flutter_ninepatch_image 1.0.2
flutter_ninepatch_image: ^1.0.2 copied to clipboard
ninepatch image for Flutter. support image scale, can super 2x and 3x images.
ninepatch image for Flutter #
TODO: flutter .9 image
Usage #
dependencies:
flutter_ninepatch_image: ^1.0.0
final assetName = 'assets/test_ninepatch.9.png';
NinePatchImage(
imageProvider: AssetImage(assetName),
sliceCachedKey: assetName,
scale: 3.0,
alignment: Alignment.center,
child: Text(
'test',
style: TextStyle(
color: Colors.white,
fontSize: 16,
),
),
);
Screenshot :