diff --git a/lib/auth/apple_auth.dart b/lib/auth/apple_auth.dart index 311222f..e5e5a48 100644 --- a/lib/auth/apple_auth.dart +++ b/lib/auth/apple_auth.dart @@ -87,7 +87,7 @@ class AppleAuthUtil { } } - // TODO: サインインがうまくいくか (Firebaseに反映されるか) 検証する + // TODO: サインインがうまくいくか (Firebaseに反映されるか) 実機で検証する static Future signInWithApple(BuildContext context) async { final _auth = FirebaseAuth.instance; final _user = _auth.currentUser; diff --git a/lib/pages/setting_page.dart b/lib/pages/setting_page.dart index bd2e567..54b93ce 100644 --- a/lib/pages/setting_page.dart +++ b/lib/pages/setting_page.dart @@ -51,11 +51,11 @@ class SettingPage extends StatelessWidget { context: context, builder: (context) { return AlertDialog( - title: Text('確認'), + title: Text('自動的にアプリが終了します'), content: Text('サインアウトしますか?'), actions: [ TextButton( - onPressed: () => Navigator.pop(context), + onPressed: () => SystemNavigator.pop(), child: Text('Cancel')), TextButton( onPressed: () async {