BIS Tech
BIS Tech

Reputation: 19444

how to disable or handle minimise app feature on Flutter

Is it possible to handle/disable this kind of feature on Flutter app(Android - Samsung Device)?

split screen is here, click here

image 1
(source: gadgetguideonline.com)

image 2

Upvotes: 1

Views: 1724

Answers (1)

Ankur Aggarwal
Ankur Aggarwal

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

Related Questions