룰렛 설정 입력 가시성과 프로필 메뉴 레이아웃 개선
룰렛 설정에서 입력 필드 포커스 시 항목을 중앙으로 이동한다. 키보드에 가려지지 않도록 입력 가시성을 높인다. 프로필 메뉴 오버레이의 하단 안전영역 패딩을 제거한다.
This commit is contained in:
@@ -7,9 +7,11 @@
|
||||
|
||||
import SwiftUI
|
||||
|
||||
class RouletteOption: ObservableObject {
|
||||
var title: String
|
||||
var percentage: String = ""
|
||||
class RouletteOption: ObservableObject, Identifiable {
|
||||
let id = UUID()
|
||||
|
||||
@Published var title: String
|
||||
@Published var percentage: String = ""
|
||||
|
||||
init(title: String, percentage: String) {
|
||||
self.title = title
|
||||
|
||||
Reference in New Issue
Block a user