fix!: (flutter) pass pixelRatio to createTexture

This commit is contained in:
Nick Fisher
2024-08-24 16:19:50 +08:00
parent ad60c6bbe1
commit 6f7d03737e

View File

@@ -20,7 +20,7 @@ abstract class ThermionFlutterPlatform extends PlatformInterface {
Future<ThermionViewer> createViewer({String? uberArchivePath});
Future<ThermionFlutterTexture?> createTexture(
int width, int height, int offsetLeft, int offsetRight);
double width, double height, double offsetLeft, double offsetRight, double pixelRatio);
Future destroyTexture(ThermionFlutterTexture texture);