d1e5fed964
Preserve the in-progress local typing/pinyin implementation so feat/pinyin can safely reset to origin/feat/pinyin (cloud English + Chinese typing).
14 lines
407 B
Swift
14 lines
407 B
Swift
// KeyboardChromeLayout.swift
|
|
// OSGKeyboard · Shared
|
|
//
|
|
// Cross-surface dimensions that must stay identical in voice and typing modes.
|
|
|
|
import CoreGraphics
|
|
|
|
public enum KeyboardChromeLayout {
|
|
public static let totalHeight: CGFloat = 281
|
|
public static let actionKeyHeight: CGFloat = 50
|
|
public static let actionKeyCornerRadius: CGFloat = 10
|
|
public static let horizontalInset: CGFloat = 8
|
|
}
|