Skip to content

Instantly share code, notes, and snippets.

@edvinasbartkus
edvinasbartkus / .github-workflows-main.yml
Created November 16, 2019 10:06
Github Action for React Native Detox
name: Detox
on: [push]
jobs:
build:
runs-on: macOS-latest
timeout-minutes: 15
env:
@FredrikAugust
FredrikAugust / useIsPrinting.ts
Last active January 29, 2024 19:17
Custom React hook for listening to whether or not the window is currently printing.
/**
* Allows you to subscribe to whether or not the window is currently printing (user invoked the system print dialog).
*
* @returns Whether or not the document is currently printing.
*/
export default function useIsPrinting(): boolean {
const [printing, setIsPrinting] = useState(
window.matchMedia('print').matches
);