💄 Adjusted developer hub
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
import 'dart:math';
|
||||
|
||||
import 'package:dropdown_button2/dropdown_button2.dart';
|
||||
import 'package:easy_localization/easy_localization.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
@@ -99,15 +97,6 @@ class DeveloperHubScreen extends HookConsumerWidget {
|
||||
),
|
||||
body: Column(
|
||||
children: [
|
||||
if (currentProject.value == null)
|
||||
...([
|
||||
// Welcome Section
|
||||
_WelcomeSection(currentDeveloper: currentDeveloper.value),
|
||||
|
||||
// Navigation Tabs
|
||||
_NavigationTabs(),
|
||||
]),
|
||||
|
||||
// Main Content
|
||||
if (currentProject.value != null)
|
||||
Expanded(
|
||||
@@ -195,162 +184,6 @@ class _ConsoleAppBar extends StatelessWidget implements PreferredSizeWidget {
|
||||
}
|
||||
}
|
||||
|
||||
// Welcome Section
|
||||
class _WelcomeSection extends StatelessWidget {
|
||||
final SnDeveloper? currentDeveloper;
|
||||
|
||||
const _WelcomeSection({required this.currentDeveloper});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final isDark = Theme.of(context).brightness == Brightness.dark;
|
||||
return Stack(
|
||||
children: [
|
||||
Positioned.fill(
|
||||
child: Container(
|
||||
decoration: BoxDecoration(
|
||||
gradient: LinearGradient(
|
||||
colors:
|
||||
isDark
|
||||
? [
|
||||
Theme.of(context).colorScheme.surfaceContainerHighest,
|
||||
Theme.of(context).colorScheme.surfaceContainerLow,
|
||||
]
|
||||
: [const Color(0xFFE8F0FE), const Color(0xFFF1F3F4)],
|
||||
begin: Alignment.topLeft,
|
||||
end: Alignment.bottomRight,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Positioned(
|
||||
right: 16,
|
||||
top: 0,
|
||||
bottom: 0,
|
||||
child: _RandomStickerImage(
|
||||
width: 180,
|
||||
height: 180,
|
||||
).opacity(isWideScreen(context) ? 1 : 0.5),
|
||||
),
|
||||
Container(
|
||||
height: 180,
|
||||
width: double.infinity,
|
||||
padding: const EdgeInsets.symmetric(horizontal: 32, vertical: 16),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text(
|
||||
'Good morning!',
|
||||
style: TextStyle(
|
||||
fontSize: 32,
|
||||
fontWeight: FontWeight.w400,
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
const Gap(4),
|
||||
Text(
|
||||
currentDeveloper != null
|
||||
? "You're working as ${currentDeveloper!.publisher!.nick}"
|
||||
: "Choose a developer and continue.",
|
||||
style: TextStyle(
|
||||
fontSize: 16,
|
||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Random Sticker Image Widget
|
||||
class _RandomStickerImage extends StatelessWidget {
|
||||
final double? width;
|
||||
final double? height;
|
||||
|
||||
const _RandomStickerImage({this.width, this.height});
|
||||
|
||||
static const List<String> _stickers = [
|
||||
'assets/images/stickers/clap.png',
|
||||
'assets/images/stickers/confuse.png',
|
||||
'assets/images/stickers/pray.png',
|
||||
'assets/images/stickers/thumb_up.png',
|
||||
];
|
||||
|
||||
String _getRandomSticker() {
|
||||
final random = Random();
|
||||
return _stickers[random.nextInt(_stickers.length)];
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Image.asset(
|
||||
_getRandomSticker(),
|
||||
width: width ?? 80,
|
||||
height: height ?? 80,
|
||||
fit: BoxFit.contain,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Navigation Tabs
|
||||
class _NavigationTabs extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
decoration: BoxDecoration(color: Theme.of(context).colorScheme.surface),
|
||||
child: Row(
|
||||
children: [
|
||||
const Gap(24),
|
||||
_NavTabItem(title: 'Dashboard', isActive: true),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _NavTabItem extends StatelessWidget {
|
||||
final String title;
|
||||
final bool isActive;
|
||||
|
||||
const _NavTabItem({required this.title, this.isActive = false});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
|
||||
decoration: BoxDecoration(
|
||||
border: Border(
|
||||
bottom: BorderSide(
|
||||
color:
|
||||
isActive
|
||||
? Theme.of(context).colorScheme.primary
|
||||
: Colors.transparent,
|
||||
width: 2,
|
||||
),
|
||||
),
|
||||
),
|
||||
child: Row(
|
||||
children: [
|
||||
Text(
|
||||
title,
|
||||
style: TextStyle(
|
||||
color:
|
||||
isActive
|
||||
? Theme.of(context).colorScheme.primary
|
||||
: Theme.of(context).colorScheme.onSurface,
|
||||
fontWeight: isActive ? FontWeight.w500 : FontWeight.w400,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Main Content Section
|
||||
class _MainContentSection extends HookConsumerWidget {
|
||||
final SnDeveloper? currentDeveloper;
|
||||
|
||||
Reference in New Issue
Block a user