룰렛 설정 입력 가시성과 프로필 메뉴 레이아웃 개선

룰렛 설정에서 입력 필드 포커스 시 항목을 중앙으로 이동한다.
키보드에 가려지지 않도록 입력 가시성을 높인다.
프로필 메뉴 오버레이의 하단 안전영역 패딩을 제거한다.
This commit is contained in:
Yu Sung
2026-02-09 17:43:45 +09:00
parent 7cba6de2fc
commit 7f703024d8
4 changed files with 57 additions and 10 deletions

View File

@@ -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