How to disable Multi View like instagram on flutter

183 Views Asked by At

I have an online test application. so to avoid cheating, I want to make my application unable to use 'multi view'. as in the instagram application. how to do that on flutter framework?

Can't use this app in Multi window view on Instagram

1

There are 1 best solutions below

0
Bhaven Shah On
  • This can be done by adding simple one line in Manifest File

Add below line in AndroidManifest.xml file

android:resizeableActivity="false"

Now check your application it will work as you want.