File tree Expand file tree Collapse file tree
ComfortableMove.xcodeproj
ComfortableMove/Core/Presentation Expand file tree Collapse file tree Original file line number Diff line number Diff line change 289289 "$(inherited)",
290290 "@executable_path/Frameworks",
291291 );
292- MARKETING_VERSION = 1.0 ;
292+ MARKETING_VERSION = 1.1.1 ;
293293 PRODUCT_BUNDLE_IDENTIFIER = com.ParkSeongGeun.ComfortableMove;
294294 PRODUCT_NAME = "$(TARGET_NAME)";
295295 SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
330330 "$(inherited)",
331331 "@executable_path/Frameworks",
332332 );
333- MARKETING_VERSION = 1.0 ;
333+ MARKETING_VERSION = 1.1.1 ;
334334 PRODUCT_BUNDLE_IDENTIFIER = com.ParkSeongGeun.ComfortableMove;
335335 PRODUCT_NAME = "$(TARGET_NAME)";
336336 SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ struct InfoView: View {
5858
5959 Toggle ( " " , isOn: $isSoundEnabled)
6060 . labelsHidden ( )
61+ . padding ( 12 ) // 터치 영역 확보
6162 . onChange ( of: isSoundEnabled) { _, _ in
6263 HapticManager . shared. impact ( style: . light) // 토글 시 햅틱
6364 }
Original file line number Diff line number Diff line change @@ -408,7 +408,7 @@ struct HomeView: View {
408408
409409 Task {
410410 do {
411- let stations = try await BusStopService . shared. getNearbyStations ( location: location, radius: 500 )
411+ let stations = try await BusStopService . shared. getNearbyStations ( location: location, radius: 100 )
412412
413413 // 가장 가까운 정류소 선택
414414 if let nearest = stations. first {
@@ -468,4 +468,4 @@ struct HomeView: View {
468468
469469#Preview {
470470 HomeView ( )
471- }
471+ }
You can’t perform that action at this time.
0 commit comments