purewhiter--mobilegym
36 行
979 B
TypeScript
36 行
979 B
TypeScript
// All app-level dimensions (matching AOSP dimens.xml)
|
|
export const dimens = {
|
|
// [status_bar] 顶部状态栏
|
|
|
|
// [search_bar] 搜索栏 (ExplorePage 顶部)
|
|
|
|
// [map] 地图画布
|
|
|
|
// [marker] 地图标记 SVG 尺寸 (ExplorePage)
|
|
|
|
// [bottom_sheet] 底部弹出面板
|
|
|
|
// [transport_mode_button] 交通方式按钮
|
|
|
|
// [fab] 浮动操作按钮
|
|
|
|
// [nav_step] 导航步骤指示条
|
|
|
|
// [action_button] 操作按钮(路线确认/取消)
|
|
|
|
// [loading_spinner] 加载旋转器
|
|
|
|
// [profile_menu] 个人资料菜单
|
|
|
|
// [settings_panel] 设置面板文字
|
|
|
|
// [radio_option] 单选项圆圈
|
|
|
|
// [icon sizes]
|
|
icSizeTab: 24, // px — tab bar icons
|
|
icSizeNav: 20, // px — navigation / header icons
|
|
icSizeAction: 18, // px — inline action icons
|
|
icSizeService: 28, // px — service / POI icons
|
|
icSizeToolbar: 22, // px — toolbar icons
|
|
} as const;
|