Reputation: 19444
Is it possible to handle/disable this kind of feature on Flutter app(Android - Samsung Device)?
(source: gadgetguideonline.com)
Upvotes: 1
Views: 1724
Reputation: 2220
This is actually a desirable feature, because it allows the user to multi-task on large screens.
In any case, if you want to disable it, put the following tag under <application>
element of your AndroidManifest
:
android:resizeableActivity="false"
Refer Multi-Window support for detailed guidelines.
Upvotes: 4