API Reference: Device.System​
Clipboard is used to send a text to the clipboard of the device or get a text from the clipboard.
TypeScript code blocks include examples of how to implement, override and components within the theme. You can create page with the UI Editor to make your page compatible with theming and then you can implement themable components programmatically. Once the page is created with the UI Editor, it generates a class under scripts/generated/pages
. You can then extend that class with the following TypeScript classes.
import PageSampleDesign from 'generated/pages/pageSample';import FlexLayout = require('sf-core/ui/flexlayout');import Application = require('sf-core/application');import System = require('sf-core/device/system');​​//You should create new Page from UI-Editor and extend with it.export default class Sample extends PageSampleDesign {​constructor() {super();// Overrides super.onShow methodthis.onShow = onShow.bind(this, this.onShow.bind(this));// Overrides super.onLoad methodthis.onLoad = onLoad.bind(this, this.onLoad.bind(this));​this.layout.flexDirection = FlexLayout.FlexDirection.COLUMN;this.layout.justifyContent = FlexLayout.JustifyContent.CENTER;this.layout.alignItems = FlexLayout.AlignItems.CENTER;}}​/*** @event onShow* This event is called when a page appears on the screen (everytime).* @param {function} superOnShow super onShow function* @param {Object} parameters passed from Router.go function*/function onShow(superOnShow: () => void) {const { headerBar } = this;superOnShow();Application.statusBar.visible = false;headerBar.visible = false;}​/*** @event onLoad* This event is called once when page is created.* @param {function} superOnLoad super onLoad function*/function onLoad(superOnLoad: () => void) {superOnLoad();​System.clipboard = System.OS;console.log(System.clipboard);}​
const Page = require("sf-core/ui/page");const extend = require("js-base/core/extend");const System = require('sf-core/device/system');​var Page1 = extend(Page)(function(_super) {_super(this, {​onShow: function(params) {Application.statusBar.visible = false;this.headerBar.visible = false;}});System.clipboard = System.OS;console.log(System.clipboard);});module.exports = Page1;​
​