Files
lotteryFront/src/hooks/use-mobile.ts
kang e5622c58cb
Some checks failed
lotteryfront CI / build (push) Has been cancelled
feat: 精简玩家端页面结构并支持局域网开发热更新
- 合并钱包、订单、开奖、通知等独立 screen 到页面层,减少重复壳组件
- 优化订单列表/详情、钱包划转与待对账展示、开奖核对与结果详情交互
- 改进入口 gate、移动端视口与下拉刷新在窄屏下的表现
- dev 绑定 0.0.0.0 并默认放行 192.168/10 网段,修复局域网 HMR WebSocket
2026-06-26 14:10:47 +08:00

10 lines
257 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client";
/**
* 玩家端 H5 内容列最大 480px交互一律按紧凑布局处理。
* 宽屏浏览器中虽 viewport 更宽,画布仍按手机宽度展示,因此恒为 `true`。
*/
export function useIsMobile(): boolean {
return true;
}