Skip to content

Commit

Permalink
chore: Update app title and icons for EduSurvey
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushPaigwar committed Aug 29, 2024
1 parent 6a16fc4 commit 79bc95a
Show file tree
Hide file tree
Showing 13 changed files with 78 additions and 77 deletions.
48 changes: 24 additions & 24 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "student_feeedback",
"request": "launch",
"type": "dart"
},
{
"name": "student_feeedback (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "student_feeedback (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "edusurvey",
"request": "launch",
"type": "dart"
},
{
"name": "edusurvey (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "edusurvey (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}
8 changes: 4 additions & 4 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ if (localPropertiesFile.exists()) {

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
flutterVersionCode = '0'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0.0'
flutterVersionName = '0.0.0'
}

android {
namespace "com.student_feeedback.system"
namespace "com.edusurvey.system"
compileSdk flutter.compileSdkVersion
ndkVersion flutter.ndkVersion

Expand All @@ -42,7 +42,7 @@ android {

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.student_feeedback.system"
applicationId "com.edusurvey.system"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.student_feeedback.system
package com.edusurvey.system

import io.flutter.embedding.android.FlutterActivity

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>student_feeedback</string>
<string>edusurvey</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
Expand Down
4 changes: 2 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import 'package:flutter/material.dart';
import 'package:flutter_dotenv/flutter_dotenv.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:student_feeedback/screens/feedback_stu.dart';
import 'package:student_feeedback/screens/signup/signup_screen.dart';
import 'package:supabase_flutter/supabase_flutter.dart';

import 'screens/feedback_fac.dart';
import 'screens/feedback_stu.dart';
import 'screens/signin/signin_fac.dart';
import 'screens/signin/signin_screen.dart';
import 'screens/signin/signin_stu.dart';
import 'screens/signup/signup_screen.dart';
import 'screens/viewfeedback.dart';

Future<void> main() async {
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/feedback_stu.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import 'dart:developer';

import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:student_feeedback/model/supabase_function.dart';
import 'package:supabase_flutter/supabase_flutter.dart';

import '../components/sized.dart';
import '../model/supabase_function.dart';
import '../provider/provider_const.dart';
import 'signin/signin_screen.dart';

Expand Down
4 changes: 2 additions & 2 deletions lib/screens/signin/signin_fac.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:student_feeedback/components/sized.dart';
import 'package:student_feeedback/model/supabase_function.dart';

import '../../components/dropdown.dart';
import '../../components/sized.dart';
import '../../components/text_field.dart';
import '../../model/supabase_function.dart';
import '../../provider/provider_const.dart';

class SigninFac extends ConsumerStatefulWidget {
Expand Down
3 changes: 2 additions & 1 deletion lib/screens/signin/signin_screen.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:student_feeedback/components/sized.dart';

import '../../components/sized.dart';

class SignInScreen extends StatelessWidget {
const SignInScreen({super.key});
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/signin/signin_stu.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:student_feeedback/screens/feedback_stu.dart';

import '../../components/text_field.dart';
import '../../model/supabase_function.dart';
import '../../provider/provider_const.dart';
import '../feedback_stu.dart';

class SignInStu extends ConsumerWidget {
const SignInStu({super.key});
Expand Down
6 changes: 3 additions & 3 deletions lib/screens/signup/signup_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:student_feeedback/components/sized.dart';
import 'package:student_feeedback/components/text_field.dart';
import 'package:student_feeedback/model/supabase_function.dart';

import '../../components/dropdown.dart';
import '../../components/sized.dart';
import '../../components/text_field.dart';
import '../../model/supabase_function.dart';
import '../../provider/provider_const.dart';

class SignupScreen extends ConsumerWidget {
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: student_feeedback
name: edusurvey
description: "A new Flutter project."
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
Expand All @@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.0.0+1
version: 0.0.0+1

environment:
sdk: ">=3.3.1 <4.0.0"
Expand Down
4 changes: 2 additions & 2 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="student_feeedback">
<meta name="apple-mobile-web-app-title" content="edusurvey">
<link rel="apple-touch-icon" href="icons/Icon-192.png">

<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>

<title>student_feeedback</title>
<title>edusurvey</title>
<link rel="manifest" href="manifest.json">

<script>
Expand Down
66 changes: 33 additions & 33 deletions web/manifest.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"name": "student_feeedback",
"short_name": "student_feeedback",
"start_url": ".",
"display": "standalone",
"background_color": "#0175C2",
"theme_color": "#0175C2",
"description": "A new Flutter project.",
"orientation": "portrait-primary",
"prefer_related_applications": false,
"icons": [
{
"src": "icons/Icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/Icon-512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "icons/Icon-maskable-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "icons/Icon-maskable-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
"name": "edusurvey",
"short_name": "edusurvey",
"start_url": ".",
"display": "standalone",
"background_color": "#0175C2",
"theme_color": "#0175C2",
"description": "A new Flutter project.",
"orientation": "portrait-primary",
"prefer_related_applications": false,
"icons": [
{
"src": "icons/Icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/Icon-512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "icons/Icon-maskable-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "icons/Icon-maskable-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
}

0 comments on commit 79bc95a

Please sign in to comment.