See how furniture looks in your room before you buy. Tap "View in AR" on any piece to place it in your space using your phone's camera.
Browse our collection and tap "View in AR" to see each piece in your space at real scale.
Three simple steps to see any piece of furniture in your actual room.
Browse the catalog and find pieces that match your style. Orbit each model in 3D to see every angle and detail.
Tap "View in AR" and point your phone at a flat surface. AR detects your floor and shows a placement indicator.
Tap to place the furniture at real scale. Pinch to resize, drag to reposition. Walk around it to see how it fits.
With SceneView for Android, AR furniture placement is just a few lines of Kotlin.
// AR furniture placement with SceneView
val chair = rememberModelInstance(modelLoader, "models/chair.glb")
ARScene(planeRenderer = true) {
anchor?.let {
AnchorNode(anchor = it) {
ModelNode(
modelInstance = chair,
scaleToUnits = 0.5f
)
}
}
}
SceneView handles ARCore session, plane detection, anchors, lighting, and shadows automatically.
View on GitHub