Skip to content

Commit

Permalink
flutter logo
Browse files Browse the repository at this point in the history
  • Loading branch information
bbeny123 committed Jul 6, 2019
1 parent 60c2d56 commit ced050e
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 15 deletions.
5 changes: 3 additions & 2 deletions flutter/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="flutter_thesis"
android:icon="@mipmap/ic_launcher">
android:icon="@mipmap/ic_logo"
android:label="Flutter Test"
android:roundIcon="@mipmap/ic_logo_round">
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
Expand Down
14 changes: 14 additions & 0 deletions flutter/android/app/src/main/res/drawable/ic_front.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:tint="#FF5514"
android:viewportWidth="41.37931"
android:viewportHeight="41.37931">
<group
android:translateX="8.689655"
android:translateY="8.689655">
<path
android:fillColor="#FF000000"
android:pathData="M13.5,0.67s0.74,2.65 0.74,4.8c0,2.06 -1.35,3.73 -3.41,3.73 -2.07,0 -3.63,-1.67 -3.63,-3.73l0.03,-0.36C5.21,7.51 4,10.62 4,14c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,8.61 17.41,3.8 13.5,0.67zM11.71,19c-1.78,0 -3.22,-1.4 -3.22,-3.14 0,-1.62 1.05,-2.76 2.81,-3.12 1.77,-0.36 3.6,-1.21 4.62,-2.58 0.39,1.29 0.59,2.65 0.59,4.04 0,2.65 -2.15,4.8 -4.8,4.8z" />
</group>
</vector>
12 changes: 0 additions & 12 deletions flutter/android/app/src/main/res/drawable/launch_background.xml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_back" />
<foreground android:drawable="@drawable/ic_front" />
</adaptive-icon>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_back" />
<foreground android:drawable="@drawable/ic_front" />
</adaptive-icon>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 6 additions & 0 deletions flutter/android/app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#008577</color>
<color name="colorPrimaryDark">#00574B</color>
<color name="colorAccent">#D81B60</color>
</resources>
4 changes: 4 additions & 0 deletions flutter/android/app/src/main/res/values/ic_back.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_back">#A0C3FF</color>
</resources>
2 changes: 1 addition & 1 deletion flutter/android/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
Flutter draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
<item name="android:windowBackground">@color/colorPrimary</item>
</style>
</resources>

0 comments on commit ced050e

Please sign in to comment.