Skip to content

Commit

Permalink
Updated upload dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownJoe796 committed Jul 30, 2024
1 parent a7dbf35 commit 758e077
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion library/library.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Pod::Spec.new do |spec|
fi
set -ev
REPO_ROOT="$PODS_TARGET_SRCROOT"
"$REPO_ROOT/../gradlew" -p "$REPO_ROOT" $KOTLIN_PROJECT_PATH:syncFramework \
"$REPO_ROOT/../../picme-frontend/gradlew" -p "$REPO_ROOT" $KOTLIN_PROJECT_PATH:syncFramework \
-Pkotlin.native.cocoapods.platform=$PLATFORM_NAME \
-Pkotlin.native.cocoapods.archs="$ARCHS" \
-Pkotlin.native.cocoapods.configuration="$CONFIGURATION"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package com.lightningkite.kiteui.views.direct

import com.lightningkite.kiteui.reactive.Readable
import com.lightningkite.kiteui.reactive.Writable
import com.lightningkite.kiteui.reactive.await
import com.lightningkite.kiteui.reactive.awaitOnce
import com.lightningkite.kiteui.launch
import com.lightningkite.kiteui.reactive.*
import com.lightningkite.kiteui.views.*
import com.lightningkite.kiteui.views.reactiveScope


actual class Select actual constructor(context: RContext) : RView(context) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.lightningkite.kiteui
import com.lightningkite.kiteui.models.AudioResource
import com.lightningkite.kiteui.models.AudioSource
import com.lightningkite.kiteui.reactive.invoke
import com.lightningkite.kiteui.reactive.reactiveScope
import com.lightningkite.kiteui.reactive.shared
import com.lightningkite.kiteui.views.RView
import com.lightningkite.kiteui.views.reactiveScope
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ import com.lightningkite.kiteui.launch as otherLaunch
//}


@Deprecated("Wrong import; this has moved", ReplaceWith("launch", ""))
//@Deprecated("Wrong import; this has moved", ReplaceWith("launch", ""))
inline fun RView.launch(noinline action: suspend () -> Unit) = otherLaunch(action)
@Deprecated("Wrong import; this has moved", ReplaceWith("reactiveScope(action = action)", "com.lightningkite.kiteui.reactive.reactiveScope"))
//@Deprecated("Wrong import; this has moved", ReplaceWith("reactiveScope(action = action)", "com.lightningkite.kiteui.reactive.reactiveScope"))
inline fun RView.reactiveScope(noinline action: suspend () -> Unit) { ReactiveScopeData(this, action, null) }
@Deprecated("Wrong import; this has moved", ReplaceWith("reactiveScope(onLoad, action)", "com.lightningkite.kiteui.reactive.reactiveScope"))
//@Deprecated("Wrong import; this has moved", ReplaceWith("reactiveScope(onLoad, action)", "com.lightningkite.kiteui.reactive.reactiveScope"))
inline fun RView.reactiveScope(noinline onLoad: (() -> Unit)?, noinline action: suspend () -> Unit) { ReactiveScopeData(this, action, onLoad) }

0 comments on commit 758e077

Please sign in to comment.