Skip to content

Repository files navigation

Logo do Projeto

WorldCupBestTeamSimulator

KotlinCompose MultiplatformAndroidiOSJujubaSVG

A Compose Multiplatform sample app demonstrating JujubaSVG — the SVG manipulation library for Kotlin Multiplatform.

Build your 2026 World Cup dream team by searching real players, selecting them, and tapping their avatars onto an interactive SVG soccer field.


Screenshots

App demo


JujubaSVG features demonstrated

FeatureUsage
Render SVGJujubaSVG(svgText, commander, onElementClick) renders soccer-field.svg inside a WebView
Click handlingonElementClick callback returns the tapped element's id, coordinate, and rootCoordinate
Add rounded imageCommand.AddRoundedImage places a player avatar at the tapped position
Remove nodeCommand.RemoveNode(id) removes a player image from the field
Commander patternrememberJujubaCommander() + commander.execute(command) queues and sends commands to the WebView
// Render the SVG fieldval commander = rememberJujubaCommander()
JujubaSVG(
svgText = svgText,
commander = commander,
modifier =Modifier.fillMaxSize(),
onElementClick = { nodeInfo ->// Add player avatar where the user tapped
commander.execute(
Command.AddRoundedImage(
imageId = player.svgImageId,
elementId ="soccer_field",
heightInPx =60,
widthInPx =60,
coordinate = nodeInfo.rootCoordinate.copy(
x = nodeInfo.rootCoordinate.x -30,
y = nodeInfo.rootCoordinate.y -30
),
imageUrl = player.avatarUrl
)
)
}
)
// Remove a player image
commander.execute(Command.RemoveNode(existingImageId))

Build & run

Android:

./gradlew :androidApp:assembleDebug

iOS: Open iosApp/ in Xcode and run on a simulator or device.


Project structure

shared/src/commonMain/
├── kotlin/…/ui/home/
│ ├── HomeScreen.kt # JujubaSVG rendering + command execution
│ ├── HomeViewModel.kt # Tracks which player images are on the field
│ └── HomeScreenUiState.kt # UI state (svgImageId per player)
├── composeResources/files/
│ ├── soccer-field.svg # SVG soccer field rendered by JujubaSVG
│ └── world_cup_2026_teams.json # Player data

Links

About

World Cup best team simulator

Topics

Resources

Stars

1 star

Watchers

0 watching

Forks

Contributors

Languages