Skip to content

Commit

Permalink
Merge pull request #102 from Terence-D/flutter_refactor
Browse files Browse the repository at this point in the history
Flutter refactor
  • Loading branch information
Terence-D authored Dec 10, 2019
2 parents 926c7e3 + 332d42a commit 8b28484
Show file tree
Hide file tree
Showing 55 changed files with 2,514 additions and 4,378 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,6 @@ gic_flutter/ios/Flutter/flutter_export_environment.sh
gic_flutter/android/.settings/org.eclipse.buildship.core.prefs
gic_flutter/android/app/.classpath
gic_flutter/android/app/.settings/org.eclipse.buildship.core.prefs
.idea/encodings.xml
.idea/misc.xml
.idea/codeStyles/Project.xml
9 changes: 3 additions & 6 deletions gic_flutter/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@

<application
android:name="io.flutter.app.FlutterApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:usesCleartextTraffic="true"
tools:ignore="GoogleAppIndexingWarning">
<activity
android:name=".views.DonateActivity"
android:label="@string/title_activity_donate"
android:theme="@style/AppTheme.NoActionBar"></activity>
android:theme="@style/AppTheme.NoActionBar"/>
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
Expand All @@ -46,10 +47,6 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".views.launch.SplashIntroActivity"
android:label="@string/title_activity_intro"
android:theme="@style/Theme.Intro" />
<activity
android:name=".views.AboutActivity"
android:theme="@style/AppTheme.NoActionBar" />
Expand All @@ -68,7 +65,7 @@
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/title_activity_game_interface"
android:theme="@style/ActivityTheme.Primary.Base.Dark"
android:windowSoftInputMode="stateHidden"></activity>
android:windowSoftInputMode="stateHidden"/>
</application>

</manifest>
Loading

0 comments on commit 8b28484

Please sign in to comment.