Skip to content

Commit

Permalink
task: implementing customer sign up and sign in with profile image up…
Browse files Browse the repository at this point in the history
…load
  • Loading branch information
Atuoha committed Sep 21, 2022
1 parent 340398a commit 1b9082f
Show file tree
Hide file tree
Showing 6 changed files with 239 additions and 113 deletions.
17 changes: 17 additions & 0 deletions lib/components/loading.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
import 'package:loading_animation_widget/loading_animation_widget.dart';

class Loading extends StatelessWidget {
const Loading({Key? key}) : super(key: key);
final double _kSize = 100;

@override
Widget build(BuildContext context) {
return Center(
child: LoadingAnimationWidget.hexagonDots(
color: Colors.white,
size: _kSize,
),
);
}
}
5 changes: 3 additions & 2 deletions lib/readme
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,20 @@ https://pub.dev/packages/google_sign_in OR facebook_signin for FACEBOOK
https://pub.dev/packages/firebase_core/
https://pub.dev/packages/firebase_auth/
https://pub.dev/packages/cloud_firestore
https://pub.dev/packages/firebase_storage

SHA FINGERPRINT
PS C:\Flutter_Apps\zedmusic\android> ./gradlew signingReport


-Add this line rule
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}
To Storage Rule




Expand Down
Loading

0 comments on commit 1b9082f

Please sign in to comment.