|
//go:build !darwin
|
|
|
|
package main
|
|
|
|
import "image"
|
|
|
|
// renderSVGNative is a no-op on non-macOS platforms.
|
|
// Returns nil, causing callers to fall back to Fyne's built-in renderer.
|
|
func renderSVGNative(svgData []byte, width, height int) image.Image {
|
|
return nil
|
|
}
|