Skip to content

Commit 02bfb67

Browse files
committed
Removed page title for step count settings sheet, hopefully this will be enough to fix it not fitting for some
1 parent e81ea0b commit 02bfb67

3 files changed

Lines changed: 1 addition & 49 deletions

File tree

InfiniLink/View Components/Sheets/StepsSettingsSheet/StepSettingsDatePicker.swift

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -22,32 +22,12 @@ struct StepSettingsSheetDatePicker: View {
2222
}
2323

2424
var body: some View {
25-
<<<<<<< HEAD
26-
<<<<<<< HEAD
2725
Text(NSLocalizedString("manually_add_step_count", comment: ""))
2826
.font(.title2)
2927
.padding()
3028
DatePicker(NSLocalizedString("select_date", comment: ""), selection: $selectedDate, displayedComponents: [.date])
3129
.padding()
3230
TextField(NSLocalizedString("enter_number_of_steps", comment: ""), text: $addDateValue.value)
33-
=======
34-
DatePicker("Select Date", selection: $selectedDate, displayedComponents: [.date])
35-
.padding(.horizontal)
36-
TextField("Enter Number of Steps", text: $addDateValue.value)
37-
>>>>>>> d1c98d0 (Removed some superfluous padding and labels from the step adjustment sheet for better usability on small screens)
38-
=======
39-
DatePicker("Select Date", selection: $selectedDate, displayedComponents: [.date])
40-
.padding(.horizontal)
41-
TextField("Enter Number of Steps", text: $addDateValue.value)
42-
=======
43-
Text(NSLocalizedString("manually_add_step_count", comment: ""))
44-
.font(.title2)
45-
.padding()
46-
DatePicker(NSLocalizedString("select_date", comment: ""), selection: $selectedDate, displayedComponents: [.date])
47-
.padding()
48-
TextField(NSLocalizedString("enter_number_of_steps", comment: ""), text: $addDateValue.value)
49-
>>>>>>> main
50-
>>>>>>> d738921 (resolving git issue)
5131
.textFieldStyle(.roundedBorder)
5232
.padding(.horizontal)
5333
.keyboardType(.numberPad)

InfiniLink/View Components/Sheets/StepsSettingsSheet/StepSettingsGoalChange.swift

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,11 @@ struct StepSettingsSheetGoalChange: View {
2222
}
2323

2424
var body: some View {
25-
<<<<<<< HEAD
26-
<<<<<<< HEAD
2725
Text(NSLocalizedString("change_step_count_goal", comment: ""))
2826
.font(.title2)
2927
.padding()
3028
TextField(NSLocalizedString("enter_step_goal", comment: ""), text: $setStepGoal.value)
31-
=======
32-
TextField("Enter Step Goal", text: $setStepGoal.value)
33-
>>>>>>> d1c98d0 (Removed some superfluous padding and labels from the step adjustment sheet for better usability on small screens)
34-
=======
35-
TextField("Enter Step Goal", text: $setStepGoal.value)
36-
=======
37-
Text(NSLocalizedString("change_step_count_goal", comment: ""))
38-
.font(.title2)
39-
.padding()
40-
TextField(NSLocalizedString("enter_step_goal", comment: ""), text: $setStepGoal.value)
41-
>>>>>>> main
42-
>>>>>>> d738921 (resolving git issue)
29+
4330
.textFieldStyle(.roundedBorder)
4431
.padding()
4532
.keyboardType(.numberPad)

InfiniLink/View Components/Sheets/StepsSettingsSheet/StepsSettingsSheet.swift

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,6 @@ struct StepSettingsSheet: View {
1515
var body: some View {
1616
VStack (alignment: .leading) {
1717
SheetCloseButton()
18-
<<<<<<< HEAD
19-
<<<<<<< HEAD
20-
=======
21-
=======
22-
>>>>>>> d738921 (resolving git issue)
23-
Text(NSLocalizedString("steps_settings", comment: ""))
24-
.font(.largeTitle)
25-
.padding()
26-
.padding(.bottom, 20)
27-
<<<<<<< HEAD
28-
=======
29-
>>>>>>> d1c98d0 (Removed some superfluous padding and labels from the step adjustment sheet for better usability on small screens)
30-
=======
31-
>>>>>>> main
32-
>>>>>>> d738921 (resolving git issue)
3318
Picker("", selection: $pickerState) {
3419
Text(NSLocalizedString("step_goal", comment: "")).tag(0)
3520
Text(NSLocalizedString("add_steps", comment: "")).tag(1)

0 commit comments

Comments
 (0)