Y80

Results 7 comments of Y80

> 您好!您的邮件已收到,我会尽快查收!若有急事请拨打我的电话:13668913609(663609)谢谢! 笑死了这个自动回复

Hello!@amrbashir @srsholmes I want to know, why is this method not exported in tauri:: window::Window? Do I have another way to use this method in the Tauri Project?

> 可以尝试Chrome插件:dark reader 这个插件只对网页生效,对插件打开的 Tab 不生效 😢

> Dark mode is here: https://github.com/chathub-dev/chathub/releases/tag/v1.9.4 👋 大佬,现在不发布 Chrome 插件商城了吗,以后都在这里 release 里发布最新版?

```js appWindow.onMoved(() => { document.body.style.opacity = '0' requestAnimationFrame(() => { document.body.style.opacity = '1' }) }) ``` This solution has only a small effect, I guess because emit 'onmoved' event are...

```tsx import { useEffect, useRef } from 'react' export default function Header() { const headerRef = useRef(null) useEffect(() => { const ele = headerRef.current! let isClicked = false function handleMouseDown()...