Files
Schnappix/node_modules/expo-image/ios/ImageLoadOptions.swift
T
2026-05-31 20:50:37 +02:00

13 lines
293 B
Swift

// Copyright 2024-present 650 Industries. All rights reserved.
import ExpoModulesCore
internal struct ImageLoadOptions: Record {
@Field var maxWidth: Int = .max
@Field var maxHeight: Int = .max
func getMaxSize() -> CGSize {
return CGSize(width: maxWidth, height: maxHeight)
}
}