Skip to content

Commit e229488

Browse files
committed
🔧 코드 포맷 수정
1 parent 7f8177c commit e229488

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

presentation/src/main/java/com/whyranoid/presentation/running/RunningActivity.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,10 @@ internal class RunningActivity :
210210
}
211211

212212
private fun handleRunningFinishSuccessState(runningFinishData: RunningFinishData) {
213-
setResult(RESULT_OK, Intent().putExtra(RunningViewModel.RUNNING_FINISH_DATA_KEY, runningFinishData))
213+
setResult(
214+
RESULT_OK,
215+
Intent().putExtra(RunningViewModel.RUNNING_FINISH_DATA_KEY, runningFinishData)
216+
)
214217
finish()
215218
}
216219

presentation/src/main/res/layout/activity_running.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
android:id="@+id/btn_map_location"
2525
android:layout_width="50dp"
2626
android:layout_height="50dp"
27-
android:text="@string/running_map_location_button"
2827
android:onClick="@{() -> vm.onTrackingButtonClicked()}"
28+
android:text="@string/running_map_location_button"
2929
app:layout_constraintBottom_toTopOf="@id/panel_running_data"
3030
app:layout_constraintRight_toRightOf="@id/panel_running_data" />
3131

@@ -37,9 +37,9 @@
3737
android:layout_margin="12dp"
3838
android:background="@color/white"
3939
android:clickable="false"
40+
android:elevation="@dimen/cardview_default_elevation"
4041
android:paddingHorizontal="12dp"
4142
android:paddingVertical="8dp"
42-
android:elevation="@dimen/cardview_default_elevation"
4343
app:layout_constraintBottom_toTopOf="@+id/btn_pause_or_resume"
4444
app:layout_constraintEnd_toEndOf="parent"
4545
app:layout_constraintStart_toStartOf="parent">
@@ -143,7 +143,6 @@
143143

144144
</androidx.constraintlayout.widget.ConstraintLayout>
145145

146-
147146
<com.google.android.material.button.MaterialButton
148147
android:id="@+id/btn_pause_or_resume"
149148
android:layout_width="0dp"

0 commit comments

Comments
 (0)