A fork of Simple Time Tracker with WearOS support. (Now integrated upstream)
0

Configure Feed

Select the types of activity you want to include in your feed.

refactor: Move `ActivityChip` to `components` folder

I was waiting for kantahrek's PR to go up to avoid creating
undue merge conflicts.

Now that we're both at the same version, the refactor can be
completed safely.

Joseph Hale (Feb 26, 2024, 10:27 PM -0700) de321da5 23261ab3

+1 -2
+1 -1
wear/src/main/java/com/example/util/simpletimetracker/presentation/ActivityChip.kt wear/src/main/java/com/example/util/simpletimetracker/presentation/components/ActivityChip.kt
··· 3 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 4 * file, You can obtain one at https://mozilla.org/MPL/2.0/. 5 5 */ 6 - package com.example.util.simpletimetracker.presentation 6 + package com.example.util.simpletimetracker.presentation.components 7 7 8 8 import androidx.compose.foundation.layout.fillMaxWidth 9 9 import androidx.compose.foundation.layout.padding
-1
wear/src/main/java/com/example/util/simpletimetracker/presentation/components/ActivitiesList.kt
··· 9 9 import androidx.compose.runtime.Composable 10 10 import androidx.compose.ui.tooling.preview.Preview 11 11 import androidx.wear.tooling.preview.devices.WearDevices 12 - import com.example.util.simpletimetracker.presentation.ActivityChip 13 12 import com.example.util.simpletimetracker.presentation.layout.ScaffoldedScrollingColumn 14 13 import com.example.util.simpletimetracker.wearrpc.Activity 15 14 import com.example.util.simpletimetracker.wearrpc.CurrentActivity