Skip to content

Commit 56554ba

Browse files
web enabled
1 parent 997f0d2 commit 56554ba

20 files changed

+695
-22
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ app.*.symbols
3838
# Obfuscation related
3939
app.*.map.json
4040

41+
4142
# Android Studio will place build artifacts here
4243
/android/app/debug
4344
/android/app/profile
4445
/android/app/release
46+
/android/app/google-services.json
47+
/ios/Runner/GoogleService-Info.plist

.metadata

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
# This file tracks properties of this Flutter project.
22
# Used by Flutter tool to assess capabilities and perform upgrades etc.
33
#
4-
# This file should be version controlled.
4+
# This file should be version controlled and should not be manually edited.
55

66
version:
7-
revision: 4f9d92fbbdf072a70a70d2179a9f87392b94104c
8-
channel: stable
7+
revision: "ba393198430278b6595976de84fe170f553cc728"
8+
channel: "stable"
99

1010
project_type: app
1111

1212
# Tracks metadata for the flutter migrate command
1313
migration:
1414
platforms:
1515
- platform: root
16-
create_revision: 4f9d92fbbdf072a70a70d2179a9f87392b94104c
17-
base_revision: 4f9d92fbbdf072a70a70d2179a9f87392b94104c
18-
- platform: android
19-
create_revision: 4f9d92fbbdf072a70a70d2179a9f87392b94104c
20-
base_revision: 4f9d92fbbdf072a70a70d2179a9f87392b94104c
21-
- platform: ios
22-
create_revision: 4f9d92fbbdf072a70a70d2179a9f87392b94104c
23-
base_revision: 4f9d92fbbdf072a70a70d2179a9f87392b94104c
16+
create_revision: ba393198430278b6595976de84fe170f553cc728
17+
base_revision: ba393198430278b6595976de84fe170f553cc728
18+
- platform: web
19+
create_revision: ba393198430278b6595976de84fe170f553cc728
20+
base_revision: ba393198430278b6595976de84fe170f553cc728
2421

2522
# User provided section
2623

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Repo For MVC Pattern In Flutter.
99
Code Generation This project uses code generation using built_value for generating code related to
1010
json serialization/deserialization. The generated part files are put in .gitignore. So in order to
1111
generate those files run the following command:
12-
#flutter pub run build_runner build --delete-conflicting-outputs
12+
#dart run build_runner build --delete-conflicting-outputs
1313

1414
#Api:- maintain these response on each scenario:-
1515
1.) ResponseCode key which is int type like:- 200,201,204;

ios/Runner.xcodeproj/project.pbxproj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/* Begin PBXBuildFile section */
1010
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
1111
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
12+
487C0F1A2D530EB04FD3BB5E /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = C7A0B6C96E9EFF66B513386E /* GoogleService-Info.plist */; };
1213
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
1314
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
1415
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
@@ -42,6 +43,7 @@
4243
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
4344
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
4445
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
46+
C7A0B6C96E9EFF66B513386E /* GoogleService-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "Runner/GoogleService-Info.plist"; sourceTree = "<group>"; };
4547
/* End PBXFileReference section */
4648

4749
/* Begin PBXFrameworksBuildPhase section */
@@ -72,6 +74,7 @@
7274
9740EEB11CF90186004384FC /* Flutter */,
7375
97C146F01CF9000F007C117D /* Runner */,
7476
97C146EF1CF9000F007C117D /* Products */,
77+
C7A0B6C96E9EFF66B513386E /* GoogleService-Info.plist */,
7578
);
7679
sourceTree = "<group>";
7780
};
@@ -163,6 +166,7 @@
163166
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
164167
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
165168
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
169+
487C0F1A2D530EB04FD3BB5E /* GoogleService-Info.plist in Resources */,
166170
);
167171
runOnlyForDeploymentPostprocessing = 0;
168172
};
@@ -295,7 +299,7 @@
295299
"$(inherited)",
296300
"@executable_path/Frameworks",
297301
);
298-
PRODUCT_BUNDLE_IDENTIFIER = com.interview.task.interviewTask;
302+
PRODUCT_BUNDLE_IDENTIFIER = flutter.mvc.app;
299303
PRODUCT_NAME = "$(TARGET_NAME)";
300304
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
301305
SWIFT_VERSION = 5.0;
@@ -424,7 +428,7 @@
424428
"$(inherited)",
425429
"@executable_path/Frameworks",
426430
);
427-
PRODUCT_BUNDLE_IDENTIFIER = com.interview.task.interviewTask;
431+
PRODUCT_BUNDLE_IDENTIFIER = flutter.mvc.app;
428432
PRODUCT_NAME = "$(TARGET_NAME)";
429433
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
430434
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -447,7 +451,7 @@
447451
"$(inherited)",
448452
"@executable_path/Frameworks",
449453
);
450-
PRODUCT_BUNDLE_IDENTIFIER = com.interview.task.interviewTask;
454+
PRODUCT_BUNDLE_IDENTIFIER = flutter.mvc.app;
451455
PRODUCT_NAME = "$(TARGET_NAME)";
452456
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
453457
SWIFT_VERSION = 5.0;

ios/Runner/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
<key>CFBundleDevelopmentRegion</key>
66
<string>$(DEVELOPMENT_LANGUAGE)</string>
77
<key>CFBundleDisplayName</key>
8-
<string>Interview Task</string>
8+
<string>Flutter MVC</string>
99
<key>CFBundleExecutable</key>
1010
<string>$(EXECUTABLE_NAME)</string>
1111
<key>CFBundleIdentifier</key>
1212
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1313
<key>CFBundleInfoDictionaryVersion</key>
1414
<string>6.0</string>
1515
<key>CFBundleName</key>
16-
<string>interview_task</string>
16+
<string>flutter_mvc</string>
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>

ios/firebase_app_id_file.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"file_generated_by": "FlutterFire CLI",
3+
"purpose": "FirebaseAppID & ProjectID for this Firebase app in this directory",
4+
"GOOGLE_APP_ID": "1:510697787645:ios:70fe1b97def6ae99516e94",
5+
"FIREBASE_PROJECT_ID": "mvc-flutter",
6+
"GCM_SENDER_ID": "510697787645"
7+
}

lib/data/remote/model/product_response_dto.g.dart

Lines changed: 157 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)