-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
93 additions
and
88 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item> | ||
<shape android:shape="rectangle" > | ||
<solid android:color="@color/gray050" /> | ||
</shape> | ||
</item> | ||
<item> | ||
<bitmap | ||
android:gravity="center" | ||
android:src="@drawable/img_splash_logo" /> | ||
</item> | ||
<item android:bottom="39dp"> | ||
<bitmap | ||
android:gravity="center_horizontal|bottom" | ||
android:src="@drawable/img_splash_copyright" /> | ||
</item> | ||
</layer-list> |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
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,36 @@ | ||
<resources> | ||
<!-- Base application theme. --> | ||
<style name="Theme.Keyneez" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> | ||
<!-- Primary brand color. --> | ||
<item name="colorPrimary">@color/gray900</item> | ||
<item name="colorPrimaryVariant">@color/gray900</item> | ||
<item name="colorOnPrimary">@color/gray050</item> | ||
<!-- Secondary brand color. --> | ||
<item name="colorSecondary">@color/teal_200</item> | ||
<item name="colorSecondaryVariant">@color/teal_700</item> | ||
<item name="colorOnSecondary">@color/gray900</item> | ||
<!-- Status bar color. --> | ||
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item> | ||
|
||
<!-- Customize your theme here. --> | ||
<!-- Remove font padding --> | ||
<item name="android:includeFontPadding">false</item> | ||
<!-- Remove title bar --> | ||
<item name="windowActionBar">false</item> | ||
<item name="windowNoTitle">true</item> | ||
<!-- Bottom sheet dialog --> | ||
<item name="bottomSheetDialogTheme">@style/AppBottomSheetDialogTheme</item> | ||
</style> | ||
|
||
<style name="AppBottomSheetDialogTheme" parent="Theme.Design.Light.BottomSheetDialog"> | ||
<item name="bottomSheetStyle">@style/AppModalStyle</item> | ||
</style> | ||
|
||
<style name="AppModalStyle" parent="Widget.Design.BottomSheet.Modal"> | ||
<item name="android:background">@drawable/shape_gray050_fill_top20_rect</item> | ||
</style> | ||
|
||
<style name="Theme.Keyneez.Splash"> | ||
<item name="android:windowSplashScreenBackground">@drawable/bg_splash_screen</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