Skip to content

Commit

Permalink
issues
Browse files Browse the repository at this point in the history
  • Loading branch information
arifayduran committed Jan 17, 2025
1 parent 067ee61 commit 5487032
Show file tree
Hide file tree
Showing 12 changed files with 232 additions and 170 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_firebase_and_github_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.27.0' # Optionally specify the version you need
flutter-version: '3.27.2' # Optionally specify the version you need

# Step 3: Install Firebase CLI globally
- name: Install Firebase CLI
Expand Down
2 changes: 1 addition & 1 deletion lib/l10n/app_ar.arb
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
"onHoverSystemLang": "تُستخدم لغة النظام لمعالجة البيانات وتنسيقات العملات والإعدادات المحلية الأخرى.",
"lastRouteMessage": "تمت استعادة جلسة الطريق الأخيرة بنجاح.",
"drawerOnHover": "الوصول إلى قائمة الإعدادات.",
"logoOnHover": "شعار مصمم بأسلوب خطي"
"logoOnHover": "شعار بخط اليد مصمم ذاتيًا"
}
2 changes: 1 addition & 1 deletion lib/l10n/app_de.arb
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
"onHoverSystemLang": "Die Systemsprache wird verwendet, um Daten-, Währungsformate und andere lokale Einstellungen zu verwalten.",
"lastRouteMessage":"Die letzte Routensitzung wurde erfolgreich wiederhergestellt.",
"drawerOnHover": "Zugriff auf das Einstellungen-Menü.",
"logoOnHover": "Kalligraphisch gestaltetes Logo"
"logoOnHover": "Kalligraphisches, selbst gestaltetes Logo"
}
9 changes: 4 additions & 5 deletions lib/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@greeting": {
"description": "This is a greeting message shown on the homepage."
},
"fullGreeting": "Welcome to Portfolio of Arif Ayduran",
"fullGreeting": "Welcome to the Portfolio of Arif Ayduran",
"@fullGreeting": {
"description": "Description of the website and welcoming to the site of the developer"
},
Expand Down Expand Up @@ -84,9 +84,8 @@
"@drawerOnHover": {
"description": "Manage basic settings and adjustments."
},
"logoOnHover": "Calligraphic designed logo",
"logoOnHover": "Calligraphic self-designed logo",
"@logoOnHover": {
"description": "Message shown on hover on logo"
}

"description": "Message shown on hover on logo"
}
}
2 changes: 1 addition & 1 deletion lib/l10n/app_tr.arb
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
"onHoverSystemLang": "Sistem dili, veri, para birimi formatı ve diğer yerel ayarları işlemek için kullanılır.",
"lastRouteMessage": "Son rota oturumu başarıyla geri yüklendi.",
"drawerOnHover": "Ayarlar menüsüne erişim.",
"logoOnHover": "Kaligrafik tasarımlı logo"
"logoOnHover": "Kaligrafik, kendi tasarımımız olan logo"
}

19 changes: 15 additions & 4 deletions lib/src/core/my_app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class MyApp extends StatelessWidget {
reverseTransitionDuration: const Duration(milliseconds: 500),
pageBuilder: (context, animation, secondaryAnimation) {
final toolbarProvider =
Provider.of<ToolbarProvider>(context, listen: false);
Provider.of<ToolbarProvider>(context); // listen: false
// final bottombarProvider =
// Provider.of<BottombarProvider>(context, listen: false);
if (uiModeController.darkModeSet) {
Expand All @@ -119,9 +119,20 @@ class MyApp extends StatelessWidget {
children: [
myToolbar,
Positioned(
top: 0,
left: 0,
child: HoverLogo(isDark: uiModeController.darkModeSet)),
top: 0,
left: Directionality.of(context) == TextDirection.ltr
? 0
: null,
right: Directionality.of(context) == TextDirection.rtl
? 0
: null,
child: GestureDetector(
onTap: () {
Navigator.pushNamed(context, "/");
},
child: HoverLogo(isDark: uiModeController.darkModeSet),
),
),
],
),
),
Expand Down
Loading

0 comments on commit 5487032

Please sign in to comment.