async function imageFill() {
const fs = storage.localFileSystem;
const pluginFolders = await fs.getPluginFolder();
const entries = await pluginFolders.getEntries();
var imagefolder;
entries.forEach(e => {
if (e.name == "images") {
imagefolder = e.nativePath;
}
});
let imageFile = "\\baselinetheme.png"
return new ImageFill(imagefolder + imageFile);
}
now How to use this fill to use in rectangle element explain… anyone