Skip to content

Instantly share code, notes, and snippets.

@juliuscanute
Last active May 30, 2020 08:25
Show Gist options
  • Save juliuscanute/0651fca32f3c48974dbd1cc0ce400ceb to your computer and use it in GitHub Desktop.
Save juliuscanute/0651fca32f3c48974dbd1cc0ce400ceb to your computer and use it in GitHub Desktop.
Configure Android
appConfig {
config("FREE") {/*...*/}
config("PREMIUM") {
switch {
key = "A"
description = "Set text visibility"
switchValue = false
}
range {
key = "B"
description = "Set text size"
min = 16
max = 72
currentValue = 50
}
editable {
key = "C"
description = "Set current text"
currentValue = "Hello iOS!"
}
choice {
key = "D"
description = "Set text color"
currentChoiceIndex = 0
item {
description = "RED"
}
item {
description = "GREEN"
}
item {
description = "BLUE"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment