Gets/sets array of documents(paths) that will be shown on QuickLook.
import QuickLook from '@smartface/native/ui/quicklook';
const quicklook = new QuickLook();
quicklook.document = ["images://.png","assests://.pdf"];
0.1
Gets/sets headerBar color of QuickLook View.
import QuickLook from '@smartface/native/ui/quicklook';
const quicklook = new QuickLook();
quicklook.barColor = UI.Color.BLACK;
0.1
Gets/sets title color of QuickLook View.
import QuickLook from '@smartface/native/ui/quicklook';
const quicklook = new QuickLook();
quicklook.titleColor = UI.Color.GREEN;
3.1.3
Gets/sets color of items on header & footer of QuickLook view.
import QuickLook from '@smartface/native/ui/quicklook';
const quicklook = new QuickLook();
quicklook.itemColor = UI.Color.BLACK;
0.1
Readonly
statusGets status bar object. This property is readonly, you can not set status bar to a page but you can change properties of page's status bar.
4.0.0 Use Application.statusBar instead
0.1
This function shows QuickLook on the given UI.Page.
show
0.1
Generated using TypeDoc
Quick Look lets people preview Keynote, Numbers, Pages, and PDF documents, as well as images and other types of files, even if your app doesn't support those file formats. For further information: https://developer.apple.com/ios/human-interface-guidelines/features/quick-look/ This class works only for IOS.
Example
Since
0.1