Skip to content

Commit

Permalink
Changes:
Browse files Browse the repository at this point in the history
The status bar in light mode is now shown correctly when the color scheme is set to pink
The color-dialog's card now wraps the height of its content
  • Loading branch information
Lijucay committed Jan 22, 2023
1 parent 3226e8e commit e7c92b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ private void showCustomDialog(){
if (tablet){
params.height = ConstraintLayout.LayoutParams.WRAP_CONTENT;
} else {
params.height = 800;
params.height = ConstraintLayout.LayoutParams.WRAP_CONTENT;
}
messageCard.setLayoutParams(params);

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<item name="colorPrimaryInverse">#FFB1C8</item>

<item name="android:statusBarColor">#FFFBFF</item>
<item name="android:windowLightStatusBar">false</item>
<item name="android:windowLightStatusBar">true</item>
</style>

<style name="AppThemeGreen" parent="Theme.Material3.Light.NoActionBar">
Expand Down

0 comments on commit e7c92b8

Please sign in to comment.