Nativescript 7.0.0 中的 ImageSource、fromFile、fromResource、fromBase64

ImageSource, fromFile, fromResource, fromBase64 in Nativescript 7.0.0

来自 https://www.npmjs.com/package/tns-core-modules

tns-core-modules 包的存在只是为了与旧版本的 NativeScript 兼容。现在推荐使用@nativescript/core

我的问题是我将如何使用这个模块

import {ImageSource, fromFile, fromResource, fromBase64} from "tns-core-modules/image-source";

没有兼容性问题

谢谢你们。 我终于明白了。

import { ImageSource } from "@nativescript/core";

在我的组件中我定义了

let imageSource = new ImageSource();