Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[0.1.3] Bug Fixes and Touchups #170

Merged
merged 19 commits into from
Sep 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 5 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background"
/>
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
Expand All @@ -58,4 +62,4 @@
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>
</manifest>
Binary file removed android/app/src/main/ic_launcher-web.png
Binary file not shown.
Binary file removed android/app/src/main/res/drawable/app_icon.png
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 10 additions & 10 deletions android/app/src/main/res/drawable/launch_background.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />

<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>
<item android:drawable="@color/primary" />
<item
android:width="112dp"
android:height="112dp"
android:gravity="center">
<bitmap
android:gravity="fill"
android:src="@drawable/ic_launcher_foreground" />
</item>
</layer-list>
4 changes: 4 additions & 0 deletions android/app/src/main/res/drawable/normal_background.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/primary" />
</layer-list>
Binary file modified android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
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.
Binary file modified android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
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.
Binary file modified android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions android/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
<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:windowFullscreen">true</item>
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<style name="NormalTheme" 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/normal_background</item>
</style>
<color name="primary">#34C7B5</color>
</resources>
Binary file modified assets/design/branding.sketch
Binary file not shown.
Binary file removed assets/icons/app_icon_desktop.png
Binary file not shown.
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.
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.
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added assets/icons/current/app_icon_android.png
Binary file added assets/icons/current/app_icon_cyan.png
7 changes: 7 additions & 0 deletions assets/icons/current/app_icon_cyan.svg
Binary file added assets/icons/current/app_icon_desktop.png
Binary file added assets/icons/current/app_icon_foreground.png
Binary file added assets/icons/current/app_icon_ios.png
Binary file added assets/icons/current/app_icon_white.png
7 changes: 7 additions & 0 deletions assets/icons/current/app_icon_white.svg
Binary file added assets/icons/current/ios-splash/Icon-1024.png
Binary file added assets/icons/current/ios-splash/Icon-108@2x.png
Binary file added assets/icons/current/ios-splash/Icon-128.png
Binary file added assets/icons/current/ios-splash/Icon-128@2x.png
Binary file added assets/icons/current/ios-splash/Icon-16.png
Binary file added assets/icons/current/ios-splash/Icon-16@2x.png
Binary file added assets/icons/current/ios-splash/Icon-20.png
Binary file added assets/icons/current/ios-splash/Icon-20@2x.png
Binary file added assets/icons/current/ios-splash/Icon-20@3x.png
Binary file added assets/icons/current/ios-splash/Icon-24@2x.png
Binary file added assets/icons/current/ios-splash/Icon-256.png
Binary file added assets/icons/current/ios-splash/Icon-256@2x.png
Binary file added assets/icons/current/ios-splash/Icon-29.png
Binary file added assets/icons/current/ios-splash/Icon-29@2x.png
Binary file added assets/icons/current/ios-splash/Icon-32.png
Binary file added assets/icons/current/ios-splash/Icon-32@2x.png
Binary file added assets/icons/current/ios-splash/Icon-40.png
Binary file added assets/icons/current/ios-splash/Icon-40@2x.png
Binary file added assets/icons/current/ios-splash/Icon-40@3x.png
Binary file added assets/icons/current/ios-splash/Icon-44@2x.png
Binary file added assets/icons/current/ios-splash/Icon-50@2x.png
Binary file added assets/icons/current/ios-splash/Icon-512.png
Binary file added assets/icons/current/ios-splash/Icon-60@2x.png
Binary file added assets/icons/current/ios-splash/Icon-60@3x.png
Binary file added assets/icons/current/ios-splash/Icon-76.png
Binary file added assets/icons/current/ios-splash/Icon-76@2x.png
Binary file added assets/icons/current/ios-splash/Icon-86@2x.png
Binary file added assets/icons/current/ios-splash/Icon-98@2x.png
Binary file added assets/icons/current/ios/Icon-1024.png
Binary file added assets/icons/current/ios/Icon-108@2x.png
Binary file added assets/icons/current/ios/Icon-128.png
Binary file added assets/icons/current/ios/Icon-128@2x.png
Binary file added assets/icons/current/ios/Icon-16.png
Binary file added assets/icons/current/ios/Icon-16@2x.png
Binary file added assets/icons/current/ios/Icon-20.png
Binary file added assets/icons/current/ios/Icon-20@2x.png
Binary file added assets/icons/current/ios/Icon-20@3x.png
Binary file added assets/icons/current/ios/Icon-24@2x.png
Binary file added assets/icons/current/ios/Icon-256.png
Binary file added assets/icons/current/ios/Icon-256@2x.png
Binary file added assets/icons/current/ios/Icon-27.5@2x.png
Binary file added assets/icons/current/ios/Icon-29.png
Binary file added assets/icons/current/ios/Icon-29@2x.png
Binary file added assets/icons/current/ios/Icon-29@3x.png
Binary file added assets/icons/current/ios/Icon-32.png
Binary file added assets/icons/current/ios/Icon-32@2x.png
Binary file added assets/icons/current/ios/Icon-40.png
Binary file added assets/icons/current/ios/Icon-40@2x.png
Binary file added assets/icons/current/ios/Icon-40@3x.png
Binary file added assets/icons/current/ios/Icon-44@2x.png
Binary file added assets/icons/current/ios/Icon-50@2x.png
Binary file added assets/icons/current/ios/Icon-512.png
Binary file added assets/icons/current/ios/Icon-512@2x.png
Binary file added assets/icons/current/ios/Icon-60@2x.png
Binary file added assets/icons/current/ios/Icon-60@3x.png
Binary file added assets/icons/current/ios/Icon-76.png
Binary file added assets/icons/current/ios/Icon-76@2x.png
Binary file added assets/icons/current/ios/Icon-83.5@2x.png
Binary file added assets/icons/current/ios/Icon-86@2x.png
Binary file added assets/icons/current/ios/Icon-98@2x.png
Binary file added assets/icons/v1/android/backup/backup.zip
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added assets/icons/v1/app_icon_desktop.png
File renamed without changes
File renamed without changes
Binary file added assets/icons/v1/ios-splash/Icon-1024.png
Binary file added assets/icons/v1/ios-splash/Icon-108@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-128.png
Binary file added assets/icons/v1/ios-splash/Icon-128@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-16.png
Binary file added assets/icons/v1/ios-splash/Icon-16@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-20.png
Binary file added assets/icons/v1/ios-splash/Icon-20@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-20@3x.png
Binary file added assets/icons/v1/ios-splash/Icon-24@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-256.png
Binary file added assets/icons/v1/ios-splash/Icon-256@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-27.5@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-29.png
Binary file added assets/icons/v1/ios-splash/Icon-29@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-29@3x.png
Binary file added assets/icons/v1/ios-splash/Icon-32.png
Binary file added assets/icons/v1/ios-splash/Icon-32@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-40.png
Binary file added assets/icons/v1/ios-splash/Icon-40@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-40@3x.png
Binary file added assets/icons/v1/ios-splash/Icon-44@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-50@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-512.png
Binary file added assets/icons/v1/ios-splash/Icon-512@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-60@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-60@3x.png
Binary file added assets/icons/v1/ios-splash/Icon-76.png
Binary file added assets/icons/v1/ios-splash/Icon-76@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-83.5@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-86@2x.png
Binary file added assets/icons/v1/ios-splash/Icon-98@2x.png
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added assets/logo/current/app_logo_banner_cyan.png
Binary file added assets/logo/current/app_logo_banner_white.png
Binary file added assets/logo/current/app_logo_cyan.png
14 changes: 14 additions & 0 deletions assets/logo/current/app_logo_cyan.svg
Binary file added assets/logo/current/app_logo_white.png
Loading