-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix empty tabs bar when always on vertical tabs bar and bottom sheets are enabled. Close #603.
- Loading branch information
Showing
6 changed files
with
141 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
|
||
<!-- | ||
We used those to support cutouts | ||
See: https://github.com/Slion/Fulguris/issues/603 | ||
However I reckon we better do that in code and make it configurable. | ||
See: https://stackoverflow.com/a/58361683/3969362 | ||
--> | ||
|
||
<style name="Theme.App.Light" parent="Theme.App.Light.Base"> | ||
<item name="android:windowLayoutInDisplayCutoutMode"> | ||
shortEdges <!-- default, shortEdges, or never --> | ||
</item> | ||
</style>> | ||
|
||
<style name="Theme.App.Dark" parent="Theme.App.Dark.Base"> | ||
<item name="android:windowLayoutInDisplayCutoutMode"> | ||
shortEdges <!-- default, shortEdges, or never --> | ||
</item> | ||
</style> | ||
|
||
<style name="Theme.App.Black" parent="Theme.App.Black.Base"> | ||
<item name="android:windowLayoutInDisplayCutoutMode"> | ||
shortEdges <!-- default, shortEdges, or never --> | ||
</item> | ||
</style> | ||
|
||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters