English | 中文
find-bar
This npm package is used to add a find bar to Electron App, and it is very easy to use.
Install
npm i --save find-bar
Usage
const { app } = require('electron');
const setFindBar = require('find-bar');
app.on('browser-window-created', (_, win) => {
setFindBar(win);
});
Find bar is implemented through BrowserWindow
, which is essentially a window object. You can use win._isFindBar
to determine whether it is a find bar, and you can use win._hasFindBar
to determine whether the current window is bound to a find bar,and the detailed usage of setFindBar
is as follows.
setFindBar(win[, options])
export interface FindBarOptions {
left?: number;
right?: number;
top?: number;
bottom?: number;
darkMode?: boolean;
}
export default function(win: any, options?: FindBarOptions): void;
Example
GitHub: https://github.com/avwo/whistle-client
License
MIT