Skip to content

Commit 1829b3b

Browse files
committed
docs: Updates version name
1 parent cdb71b1 commit 1829b3b

File tree

5 files changed

+206
-193
lines changed

5 files changed

+206
-193
lines changed

android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ android {
5353
defaultConfig {
5454
applicationId "in.ac.iitr.mdg.appetizer"
5555
minSdkVersion 21
56-
targetSdkVersion flutter.targetSdkVersion
56+
targetSdkVersion 34
5757
versionCode flutterVersionCode.toInteger()
5858
versionName flutterVersionName
5959
}

lib/data/constants/env_config.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class EnvironmentConfig {
22
static const String BASE_URL = String.fromEnvironment(
33
'BASE_URL',
4-
defaultValue: 'https://appetizer.onrender.com',
4+
defaultValue: 'https://mess.iitr.ac.in',
55
);
66

77
static const String OAUTH_CLIENT_ID = String.fromEnvironment(
@@ -11,7 +11,7 @@ class EnvironmentConfig {
1111

1212
static const String OAUTH_REDIRECT_URI = String.fromEnvironment(
1313
'OAUTH_REDIRECT_URI',
14-
defaultValue: 'https://appetizer.onrender.com/oauth/',
14+
defaultValue: 'https://mess.iitr.ac.in/api/user/oauth/redirect/',
1515
);
1616

1717
static const String SENTRY_DSN = String.fromEnvironment('SENTRY_DSN');

lib/presentation/leaves_and_rebate/components/monthly_rebates.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ class _MonthlyRebatesState extends State<MonthlyRebates> {
9898
onTap: () async {
9999
DateTime? newDateTime = await showMonthPicker(
100100
context: context,
101-
headerColor: AppTheme.primary,
102-
selectedMonthBackgroundColor: AppTheme.primary,
103-
unselectedMonthTextColor: AppTheme.primary,
101+
// headerColor: AppTheme.primary,
102+
// selectedMonthStyle: TextStyle(color: AppTheme.primary),
103+
// unselectedMonthTextColor: AppTheme.primary,
104104
confirmWidget: const Text(
105105
'OK',
106106
style: TextStyle(color: AppTheme.primary),

0 commit comments

Comments
 (0)