Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Emon526 committed Oct 14, 2022
1 parent 5eff220 commit 2efe635
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 21 deletions.
16 changes: 8 additions & 8 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -676,10 +676,10 @@ PODS:
- Flutter (1.0.0)
- flutter_native_splash (0.0.1):
- Flutter
- flutter_sound_core (8.5.0)
- flutter_sound_lite (8.5.0):
- flutter_sound (9.2.13):
- Flutter
- flutter_sound_core (= 8.5.0)
- flutter_sound_core (= 9.2.13)
- flutter_sound_core (9.2.13)
- FMDB (2.7.5):
- FMDB/standard (= 2.7.5)
- FMDB/standard (2.7.5)
Expand Down Expand Up @@ -787,7 +787,7 @@ DEPENDENCIES:
- firebase_storage (from `.symlinks/plugins/firebase_storage/ios`)
- Flutter (from `Flutter`)
- flutter_native_splash (from `.symlinks/plugins/flutter_native_splash/ios`)
- flutter_sound_lite (from `.symlinks/plugins/flutter_sound_lite/ios`)
- flutter_sound (from `.symlinks/plugins/flutter_sound/ios`)
- image_picker_ios (from `.symlinks/plugins/image_picker_ios/ios`)
- path_provider_ios (from `.symlinks/plugins/path_provider_ios/ios`)
- permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`)
Expand Down Expand Up @@ -836,8 +836,8 @@ EXTERNAL SOURCES:
:path: Flutter
flutter_native_splash:
:path: ".symlinks/plugins/flutter_native_splash/ios"
flutter_sound_lite:
:path: ".symlinks/plugins/flutter_sound_lite/ios"
flutter_sound:
:path: ".symlinks/plugins/flutter_sound/ios"
image_picker_ios:
:path: ".symlinks/plugins/image_picker_ios/ios"
path_provider_ios:
Expand Down Expand Up @@ -870,8 +870,8 @@ SPEC CHECKSUMS:
FirebaseStorageInternal: 81d8a597324ccd06c41a43c5700bc1185a2fc328
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
flutter_native_splash: 52501b97d1c0a5f898d687f1646226c1f93c56ef
flutter_sound_core: d9396f10752a0df9aa3197f4c431d62d934918cc
flutter_sound_lite: 175808b357d0b3eeee1345843545bb2fbde06e6c
flutter_sound: c60effa2a350fb977885f0db2fbc4c1ad5160900
flutter_sound_core: 26c10e5832e76aaacfae252d8925232281c486ae
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
GoogleDataTransport: 1c8145da7117bd68bbbed00cf304edb6a24de00f
GoogleUtilities: 1d20a6ad97ef46f67bbdec158ce00563a671ebb7
Expand Down
4 changes: 1 addition & 3 deletions lib/models/usermodel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class UserModel {
String? lastname;
String? email;
String? phone;
String? password;
// String? password;
String? uid;
String? profilePhoto;
List? following;
Expand All @@ -14,7 +14,6 @@ class UserModel {
required this.firstname,
required this.lastname,
required this.email,
required this.password,
required this.phone,
required this.uid,
required this.profilePhoto,
Expand All @@ -27,7 +26,6 @@ class UserModel {
"lastname": lastname,
"email": email,
"phone": phone,
"password": password,
"uid": uid,
"profilePhoto": profilePhoto,
"followers": followers,
Expand Down
1 change: 0 additions & 1 deletion lib/recorder/views/cloud_record_list_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ class _CloudRecordListViewState extends State<CloudRecordListView> {
lastname: followingdata.get('lastname'),
email: followingdata.get('email'),
phone: followingdata.get('phone'),
password: followingdata.get('password'),
uid: followingdata.get('uid'),
profilePhoto: followingdata.get('profilePhoto'),
followers: followingdata.get('followers'),
Expand Down
1 change: 0 additions & 1 deletion lib/recorder/views/feature_buttons_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ class _FeatureButtonsViewState extends State<FeatureButtonsView> {
lastname: followingdata.get('lastname'),
email: followingdata.get('email'),
phone: followingdata.get('phone'),
password: followingdata.get('password'),
uid: followingdata.get('uid'),
profilePhoto: followingdata.get('profilePhoto'),
followers: followingdata.get('followers'),
Expand Down
3 changes: 0 additions & 3 deletions lib/screens/profilescreen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ class _ProfileScreenState extends State<ProfileScreen> {
lastname: followersdata.get('lastname'),
email: followersdata.get('email'),
phone: followersdata.get('phone'),
password: followersdata.get('password'),
uid: followersdata.get('uid'),
profilePhoto: imageurl,
followers: followersdata.get('followers'),
Expand All @@ -76,14 +75,12 @@ class _ProfileScreenState extends State<ProfileScreen> {

@override
void initState() {
// recorder.init();
_onUploadComplete();
super.initState();
}

@override
void dispose() {
// recorder.dispose();
super.dispose();
}

Expand Down
6 changes: 1 addition & 5 deletions lib/services/authservice.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ class AuthController {
lastname: lastname,
email: email,
phone: phone,
password: password,
uid: cred.user!.uid,
profilePhoto: '',
followers: [],
Expand Down Expand Up @@ -115,7 +114,6 @@ class AuthController {
lastname: followersdata.get('lastname'),
email: followersdata.get('email'),
phone: followersdata.get('phone'),
password: followersdata.get('password'),
uid: followersdata.get('uid'),
profilePhoto: followersdata.get('profilePhoto'),
followers: followers,
Expand All @@ -140,7 +138,6 @@ class AuthController {
lastname: followingdata.get('lastname'),
email: followingdata.get('email'),
phone: followingdata.get('phone'),
password: followingdata.get('password'),
uid: followingdata.get('uid'),
profilePhoto: followingdata.get('profilePhoto'),
followers: followingdata.get('followers'),
Expand All @@ -167,7 +164,7 @@ class AuthController {
lastname: followersdata.get('lastname'),
email: followersdata.get('email'),
phone: followersdata.get('phone'),
password: followersdata.get('password'),
// password: followersdata.get('password'),
uid: followersdata.get('uid'),
profilePhoto: followersdata.get('profilePhoto'),
followers: followers,
Expand All @@ -193,7 +190,6 @@ class AuthController {
lastname: followingdata.get('lastname'),
email: followingdata.get('email'),
phone: followingdata.get('phone'),
password: followingdata.get('password'),
uid: followingdata.get('uid'),
profilePhoto: followingdata.get('profilePhoto'),
followers: followingdata.get('followers'),
Expand Down

0 comments on commit 2efe635

Please sign in to comment.