Skip to content

Commit 569afb5

Browse files
committed
add dotin job exp
1 parent 70cef12 commit 569afb5

File tree

10 files changed

+443
-352
lines changed

10 files changed

+443
-352
lines changed

Diff for: android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ android {
4343

4444
defaultConfig {
4545
applicationId "com.pedram.portfolio"
46-
minSdkVersion 16
46+
minSdkVersion flutter.minSdkVersion
4747
targetSdkVersion 30
4848
versionCode flutterVersionCode.toInteger()
4949
versionName flutterVersionName

Diff for: android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ subprojects {
2424
project.evaluationDependsOn(':app')
2525
}
2626

27-
task clean(type: Delete) {
27+
tasks.register("clean", Delete) {
2828
delete rootProject.buildDir
2929
}

Diff for: android/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-all.zip

Diff for: assets/api/en/job_experience.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
[
2+
{
3+
"company": "Dotin",
4+
"title": "Flutter Developer",
5+
"fromDate": "2024-05-15",
6+
"toDate": "2024-05-15",
7+
"isContinue": true
8+
},
29
{
310
"company": "Negah Holding",
411
"title": "Flutter Developer",
512
"fromDate": "2023-07-23",
6-
"toDate": "2023-07-23",
7-
"isContinue": true
13+
"toDate": "2024-05-14",
14+
"isContinue": false
815
},
916
{
1017
"company": "City Development and innovation",

Diff for: assets/api/fa/job_experience.json

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
[
2+
{
3+
"company": "داتین",
4+
"title": "توسعه دهنده فلاتر",
5+
"fromDate": "2024-05-15",
6+
"toDate": "2024-05-15",
7+
"isContinue": true
8+
},
29
{
310
"company": "هلدینگ نگاه",
411
"title": "توسعه دهنده فلاتر",

Diff for: lib/feature/home/presentation/page/home_page.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class _HomePageState extends State<HomePage> {
121121
),
122122
],
123123
child: Scaffold(
124-
backgroundColor: Theme.of(context).colorScheme.background,
124+
backgroundColor: Theme.of(context).colorScheme.surface,
125125
body: HomePageMain(
126126
onExportClick: _onExportClick,
127127
onChangeLanguageClick: _onChangeLanguageClick,

Diff for: lib/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class _MyAppState extends State<MyApp> {
128128
colorScheme: ColorScheme.fromSeed(
129129
seedColor: MyColors.primaryColor,
130130
brightness: Brightness.dark,
131-
).copyWith(background: MyColors.secondBackgroundColor),
131+
).copyWith(surface: MyColors.secondBackgroundColor),
132132
),
133133
locale: Locale(language.language),
134134
localizationsDelegates: AppLocalizations.localizationsDelegates,

Diff for: macos/Flutter/GeneratedPluginRegistrant.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import file_saver
99
import path_provider_foundation
1010
import printing
1111
import shared_preferences_foundation
12-
import sqflite
12+
import sqflite_darwin
1313
import url_launcher_macos
1414

1515
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {

0 commit comments

Comments
 (0)