14 lines
455 B
Kotlin
14 lines
455 B
Kotlin
package ui.screens
|
|
|
|
import androidx.compose.runtime.Composable
|
|
import cafe.adriel.voyager.core.screen.Screen
|
|
|
|
class ProfilesManager: Screen {
|
|
|
|
@Composable
|
|
override fun Content() {
|
|
//TODO: List of profiles in profiles folder onDoubleClick = ProfileDetails for that profile, longClick = open confirmation dialog to activate profile. Show name, programName, and aiName
|
|
// Create Profile button
|
|
// Delete Profile button
|
|
}
|
|
} |