Skip to content

Commit

Permalink
⚡ Completed 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
heydc7 committed Feb 21, 2022
1 parent ade8351 commit 442ed0b
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ app.*.map.json
# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release
/android/app/release
1 change: 1 addition & 0 deletions android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ GeneratedPluginRegistrant.java
key.properties
**/*.keystore
**/*.jks
app/upload-keystore.jks
21 changes: 17 additions & 4 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}

android {
compileSdkVersion flutter.compileSdkVersion

Expand All @@ -43,20 +49,27 @@ android {

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.unmutify"
applicationId "com.dhanrajchavan.unmutify"
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}

signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig signingConfigs.release
}
}

}

flutter {
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.unmutify">
package="com.dhanrajchavan.unmutify">
<queries>
<intent>
<action android:name="android.intent.action.TTS_SERVICE" />
Expand Down
3 changes: 3 additions & 0 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@
ENABLE_BITCODE = NO;
EXTRA_FRONT_END_OPTIONS = "--no-sound-null-safety";
INFOPLIST_FILE = Runner/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -490,6 +491,7 @@
ENABLE_BITCODE = NO;
EXTRA_FRONT_END_OPTIONS = "--no-sound-null-safety";
INFOPLIST_FILE = Runner/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -515,6 +517,7 @@
ENABLE_BITCODE = NO;
EXTRA_FRONT_END_OPTIONS = "--no-sound-null-safety";
INFOPLIST_FILE = Runner/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
2 changes: 1 addition & 1 deletion ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>unmutify</string>
<string>Unmutify</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
Expand Down
13 changes: 13 additions & 0 deletions lib/utils/themes/my_themes.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

class MyThemes {

Expand All @@ -8,10 +9,16 @@ class MyThemes {
appBarTheme: AppBarTheme(
backgroundColor: Colors.white,
centerTitle: true,
iconTheme: IconThemeData(
color: Colors.black
),
titleTextStyle: TextStyle(
color: Colors.black,
fontSize: 24,
fontWeight: FontWeight.bold
),
systemOverlayStyle: SystemUiOverlayStyle(
statusBarColor: Colors.white,
)
),
cardTheme: CardTheme(
Expand Down Expand Up @@ -43,6 +50,12 @@ class MyThemes {
color: Colors.white,
fontSize: 24,
fontWeight: FontWeight.bold
),
iconTheme: IconThemeData(
color: Colors.white
),
systemOverlayStyle: SystemUiOverlayStyle(
statusBarColor: Colors.black
)
),
cardTheme: CardTheme(
Expand Down
3 changes: 1 addition & 2 deletions lib/views/screens/features_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class _FeaturesViewState extends State<FeaturesView> {
final List<Feature> allFeatures = [
Feature(iconData: Mdi.stickerEmoji, title: "Emojify", subTitle: "Interact with 1000+ emojis"),
Feature(iconData: Mdi.textToSpeech, title: "Textify", subTitle: "Convert your text into audio words"),
Feature(iconData: Mdi.draw, title: "Drawify", subTitle: "Draw on canvas easily"),
Feature(iconData: Mdi.draw, title: "Drawify", subTitle: "Draw your thoughts on canvas"),
Feature(iconData: Mdi.currencyUsdOff, title: "Free", subTitle: "Open Source & free to use"),
];

Expand All @@ -27,7 +27,6 @@ class _FeaturesViewState extends State<FeaturesView> {
child: Scaffold(
appBar: AppBar(title: Text('Features'),),
body: Container(

child: SingleChildScrollView(
child: Column(
children: [
Expand Down
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png">
<link rel="icon" type="image/png" href="favicon.ico"/>

<title>unmutify</title>
<title>Unmutify</title>
<link rel="manifest" href="manifest.json">
</head>
<body>
Expand Down

0 comments on commit 442ed0b

Please sign in to comment.