---
title: "Flutter measurement magnifier not working on Android"
canonical_url: "https://www.nutrient.io/guides/flutter/troubleshooting/measurement-magnifier-not-working-on-android/"
md_url: "https://www.nutrient.io/guides/flutter/troubleshooting/measurement-magnifier-not-working-on-android.md"
last_updated: "2026-05-15T15:53:41.581Z"
description: "Solutions for common issues and errors in Nutrient Flutter SDK with debugging tips and workarounds."
---

Our measurement tools are equipped with a magnifier that allows you to zoom in on the screen to get more precise measurements. However, this feature currently doesn’t work properly on Android. The magnifier bubble is displayed, but it doesn’t contain the magnified content, as shown in the image below. This is an issue in the Flutter framework and is being tracked in [this GitHub issue](https://github.com/flutter/flutter/issues/112712).![Measurement magnifier not working on Android](@/assets/guides/flutter/troubleshooting/flutter-measurement-magnifier.jpg)

## Workaround

There’s a workaround someone suggested within the issue that uses the `texture` render mode in the base Android `Activity`, as shown below:

```kotlin

import io.flutter.embedding.android.FlutterActivity
import io.flutter.embedding.android.RenderMode

class MainActivity : FlutterActivity() {
    override fun getRenderMode(): RenderMode {
        return RenderMode.texture
    }
}

```

This workaround is a temporary solution until the issue is resolved in the Flutter framework.
---

## Related pages

- [How to add the license key for your Flutter app](/guides/flutter/troubleshooting/add-license-key.md)
- [How to find your iOS app bundle ID quickly](/guides/flutter/troubleshooting/finding-the-bundle-id.md)
- [Flutter Configuration Problems](/guides/flutter/troubleshooting/flutter-configuration-problems.md)
- [Ios Flutter Platform Not Detected](/guides/flutter/troubleshooting/ios-flutter-platform-not-detected.md)
- [Cocoapods Conflicts With Asdf](/guides/flutter/troubleshooting/cocoapods-conflicts-with-asdf.md)
- [Manage status bar appearance in Flutter](/guides/flutter/troubleshooting/view-controller-based-status-bar-appearance.md)
- [How to find your current SDK version](/guides/flutter/troubleshooting/getting-the-currently-used-version.md)
- [Pspdfkit Widget Appcompat Activity Issue](/guides/flutter/troubleshooting/pspdfkit-widget-appcompat-activity-issue.md)
- [Using Android Gradle Plugin 7](/guides/flutter/troubleshooting/using-android-gradle-plugin-7.md)
- [What Is An App Id](/guides/flutter/troubleshooting/what-is-an-app-id.md)
- [Understanding bundle IDs for iOS app development](/guides/flutter/troubleshooting/what-is-a-bundle-id.md)

