Skip to content

Commit

Permalink
Delete public accessor from InformationRow
Browse files Browse the repository at this point in the history
  • Loading branch information
shin-usu committed Jun 20, 2024
1 parent 1ca3866 commit be50f05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app-ios/Sources/TimetableDetailFeature/InformationRow.swift
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import SwiftUI

public struct InformationRow: View {
struct InformationRow: View {
private let icon: Image
private let title: String
private let content: String

public init(
init(
icon: Image,
title: String,
content: String
Expand All @@ -15,7 +15,7 @@ public struct InformationRow: View {
self.content = content
}

public var body: some View {
var body: some View {
HStack {
icon
HStack(spacing: 12) {
Expand Down

0 comments on commit be50f05

Please sign in to comment.