Skip to content

UI work #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/appwrite_service/auth_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class AuthService extends ChangeNotifier {

signInWithProvider({required String provider}) async {
try {
final session = await account.createOAuth2Session(provider: provider);
final session = await account.createOAuth2Session(provider: provider, success: "https://help-me-design.sumitpanwar.com");
_currentUser = await account.get();
_status = AuthStatus.authenticated;
return session;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,19 +193,14 @@ class SignInView extends StatelessWidget {

final account = Account(client);

// Go to OAuth provider login page

try {
await account.createOAuth2Session(provider: 'github', success: "https://help-me-design.netlify.app/#/");
await account.createOAuth2Session(provider: 'github', success: "https://help-me-design.sumitpanwar.com");

Navigator.pop(context);
const snackbar = SnackBar(content: Text('Account created!'));
ScaffoldMessenger.of(context).showSnackBar(snackbar);
} on AppwriteException catch (e) {
Navigator.pop(context);
}

// account.get();
// account.deleteSession(sessionId: "current");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class VerificationView extends StatelessWidget {
// Go to OAuth provider login page

try {
await account.createOAuth2Session(provider: 'github', success: "https://help-me-design.netlify.app/#/");
await account.createOAuth2Session(provider: 'github', success: "https://help-me-design.sumitpanwar.com");

Navigator.pop(context);
const snackbar = SnackBar(content: Text('Account created!'));
Expand Down