This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var radius by remember { mutableFloatStateOf(0f) } | |
Canvas(modifier = Modifier.matchParentSize()) { | |
// Draw background circle | |
drawCircle( | |
color = Color.White, | |
radius = radius, | |
alpha = .05f, | |
blendMode = BlendMode.Lighten, | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SDK_VERSION="14.5" | |
TARGET_IOS_VERSION="14" | |
LLVM_PATH="$HOME/opt/llvm-15.0.6" # only llvm 15 worked for me | |
cd "$(dirname "$0")/dobby" | |
rm -rf build || true | |
export PATH="$LLVM_PATH/bin:$THEOS/toolchain/linux/iphone/bin:$PATH" |