pixel_perfect
在屏幕上添加半透明图像。
入门
在pubspec.yaml依赖项中添加pixel_perfect。
dependencies :
pixel_perfect : any
如何使用
将包含图像的资产文件夹添加到您的pubspec.yaml
uses-material-design : true
assets :
- assets/
将以下包导入到您的dart文件中
import 'package:pixel_perfect/pixel_perfect.dart' ;
return PixelPerfect (
image : 'assets/design.png' , // path to your asset image
offset : Offset ( 0 , 0 ) // optional argument if you
1