Skip to content

Commit

Permalink
Merge pull request #21 from yihong1120/feature/dashboard-display
Browse files Browse the repository at this point in the history
Fix file route to import
  • Loading branch information
yihong1120 authored Dec 30, 2023
2 parents 68f61e8 + d88d245 commit 5105a1b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/screens/accounts/account_delete_confirm_page.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:your_project_name/services/auth_service.dart'; // 假設您有一個處理身份驗證的服務
import '../../services/auth_service.dart'; // 假設您有一個處理身份驗證的服務

class AccountDeleteConfirmPage extends StatelessWidget {
const AccountDeleteConfirmPage({Key? key}) : super(key: key);
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/accounts/account_page.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:your_project_name/services/auth_service.dart'; // 假設您有一個處理身份驗證的服務
import 'package:../../services/auth_service.dart'; // 假設您有一個處理身份驗證的服務

class AccountPage extends StatefulWidget {
const AccountPage({Key? key}) : super(key: key);
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/accounts/login.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:your_project_name/services/auth_service.dart'; // 假設您有一個處理身份驗證的服務
import 'package:../../services/auth_service.dart'; // 假設您有一個處理身份驗證的服務

class LoginPage extends StatefulWidget {
const LoginPage({Key? key}) : super(key: key);
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/accounts/password_change_page.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:your_project_name/services/auth_service.dart'; // 假設您有一個處理身份驗證的服務
import 'package:../../services/auth_service.dart'; // 假設您有一個處理身份驗證的服務

class PasswordChangePage extends StatefulWidget {
const PasswordChangePage({Key? key}) : super(key: key);
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/accounts/register.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:your_project_name/services/auth_service.dart'; // 假設您有一個處理身份驗證的服務
import 'package:../../services/auth_service.dart'; // 假設您有一個處理身份驗證的服務

class RegisterPage extends StatefulWidget {
const RegisterPage({Key? key}) : super(key: key);
Expand Down
4 changes: 2 additions & 2 deletions lib/screens/accounts/social_connections_page.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'package:flutter/material.dart';
import 'package:your_project_name/models/social_account.dart'; // 假設您有一個 SocialAccount 模型
import 'package:your_project_name/services/social_service.dart'; // 假設您有一個處理社交帳號的服務
import 'package:../../models/social_account.dart'; // 假設您有一個 SocialAccount 模型
import 'package:../../services/social_service.dart'; // 假設您有一個處理社交帳號的服務

class SocialConnectionsPage extends StatefulWidget {
const SocialConnectionsPage({Key? key}) : super(key: key);
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/accounts/verify_page.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:your_project_name/services/auth_service.dart'; // 假設您有一個處理身份驗證的服務
import 'package:../../services/auth_service.dart'; // 假設您有一個處理身份驗證的服務

class VerifyPage extends StatefulWidget {
const VerifyPage({Key? key}) : super(key: key);
Expand Down

0 comments on commit 5105a1b

Please sign in to comment.