fluttercommunity / flutter_wear_plugin

A plugin that offers widgets for Wear OS by Google
https://pub.dev/packages/wear
BSD 3-Clause "New" or "Revised" License
135 stars 71 forks source link

Exit full-screen #9

Open AcarFurkan opened 3 years ago

AcarFurkan commented 3 years ago

When I swipe from left to right, I don't want it to exit the application. What can I do for this?

maxnemoy commented 2 years ago

Temporary solution Add this key <item name="android:windowSwipeToDismiss">false</item> in NormalTheme section to file app/src/main/res/values/styles.xml

like this

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
        <item name="android:windowBackground">@drawable/launch_background</item>
    </style>
    <style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
        <item name="android:windowBackground">?android:colorBackground</item>
        <!-- this -->
        <item name="android:windowSwipeToDismiss">false</item> 
    </style>
</resources>