Skip to content

Commit

Permalink
Changed button in DayDetailsBottomSheet to OutlinedButton
Browse files Browse the repository at this point in the history
  • Loading branch information
HeyPouya committed Oct 6, 2024
1 parent 099b5a3 commit f97c86d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.material3.Button
import androidx.compose.material3.CardDefaults
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.ModalBottomSheet
import androidx.compose.material3.OutlinedButton
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
Expand Down Expand Up @@ -70,7 +70,7 @@ fun DayDetailsBottomSheet(
}
}
item {
Button(
OutlinedButton(
modifier = Modifier.padding(16.dp),
onClick = onSetReminderClicked
) {
Expand Down

0 comments on commit f97c86d

Please sign in to comment.