0.5.0 - Optimizations and better session management

This commit is contained in:
2025-08-19 00:35:04 -06:00
parent 4eef77bd3b
commit 870278f240
7 changed files with 51 additions and 10 deletions

View File

@@ -3,6 +3,7 @@ package com.atridad.openclimb.ui
import androidx.compose.foundation.layout.padding
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Add
import androidx.compose.material.icons.filled.PlayArrow
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Modifier
@@ -67,7 +68,7 @@ fun OpenClimbApp() {
LaunchedEffect(gyms, activeSession) {
fabConfig = if (gyms.isNotEmpty() && activeSession == null) {
FabConfig(
icon = Icons.Default.Add,
icon = Icons.Default.PlayArrow,
contentDescription = "Start Session",
onClick = {
if (gyms.size == 1) {