Add a basic but functional app. Needs improvement.

This commit is contained in:
Finn M Glas 2020-05-12 14:52:56 +02:00
parent a67ca696b3
commit 93e672c826
41 changed files with 1142 additions and 0 deletions

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#2d2d2d</color>
<color name="colorPrimaryDark">#252827</color>
<color name="colorAccent">#5555ff</color>
</resources>

View file

@ -0,0 +1,6 @@
<resources>
<string name="fa_icon_calendar">&#xf133;</string>
<string name="fa_icon_home">&#xf015;</string>
<string name="fa_icon_globe">&#xf0ac;</string>
<string name="fa_icon_bars">&#xf0c9;</string>
</resources>

View file

@ -0,0 +1,3 @@
<resources>
<string name="app_name">Launcher</string>
</resources>

View file

@ -0,0 +1,12 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowDisablePreview">true</item>
</style>
</resources>