A react tag input field component using shadcn, like one you see when adding keywords to a video on YouTube. Usable with Form
or standalone.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Capacitor } from "@capacitor/core"; | |
import { Device } from "@capacitor/device"; | |
import { SplashScreen } from "@capacitor/splash-screen"; | |
import { StatusBar, Style } from "@capacitor/status-bar"; | |
import { useState, useEffect } from "react"; | |
interface CapacitorHookOptions { | |
color: string; | |
iosStyle: 'dark' | 'light'; | |
androidStyle: 'dark' | 'light'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface ResizeOptions { | |
/** | |
* Desired width of the image. | |
*/ | |
width: number; | |
/** | |
* Desired height of the image. | |
*/ | |
height: number; | |
/** |