File tree Expand file tree Collapse file tree 3 files changed +8
-14
lines changed
shared/src/commonMain/kotlin/dev/johnoreilly/confetti/ui/sessions Expand file tree Collapse file tree 3 files changed +8
-14
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ default_platform :android
4
4
5
5
platform :android do
6
6
7
- androidVersionNum = 253
8
- wearVersionNum = 328
7
+ androidVersionNum = 254
8
+ wearVersionNum = 329
9
9
10
10
before_all do
11
11
end
Original file line number Diff line number Diff line change 487
487
buildSettings = {
488
488
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
489
489
CODE_SIGN_ENTITLEMENTS = iosApp/iosApp.entitlements;
490
- CODE_SIGN_STYLE = Manual;
490
+ CODE_SIGN_IDENTITY = "Apple Development";
491
+ CODE_SIGN_STYLE = Automatic;
491
492
CURRENT_PROJECT_VERSION = 1.0.2;
492
493
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
493
- DEVELOPMENT_TEAM = "" ;
494
+ DEVELOPMENT_TEAM = NT77748GS8 ;
494
495
ENABLE_PREVIEWS = YES;
495
496
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../shared/build/xcode-frameworks/$(CONFIGURATION)/$(SDK_NAME)";
496
497
INFOPLIST_FILE = iosApp/Info.plist;
Original file line number Diff line number Diff line change @@ -43,21 +43,14 @@ fun SessionItemView(
43
43
) {
44
44
45
45
var modifier = Modifier .fillMaxSize()
46
- val tonalElevation = if (! session.isService() && ! session.isBreak()) {
47
- 0 .dp
48
- } else {
49
- 2 .dp
50
- }
51
- if (! session.isBreak()) {
46
+ if (! session.isService() && ! session.isBreak()) {
52
47
modifier = modifier.clickable(onClick = {
53
48
sessionSelected(session.id)
54
49
})
55
50
}
56
51
57
52
58
- Surface (
59
- tonalElevation = tonalElevation
60
- ) {
53
+ Surface {
61
54
Row (modifier.padding(horizontal = 16 .dp, vertical = 8 .dp)) {
62
55
Column (modifier = Modifier .weight(1f )) {
63
56
Row (verticalAlignment = Alignment .CenterVertically ) {
@@ -108,7 +101,7 @@ fun SessionItemView(
108
101
109
102
var showDialog by remember { mutableStateOf(false ) }
110
103
111
- if (! session.isBreak()) {
104
+ if (! session.isBreak() && ! session.isService() ) {
112
105
Bookmark (
113
106
isBookmarked = isBookmarked,
114
107
onBookmarkChange = { shouldAdd ->
You can’t perform that action at this time.
0 commit comments