Skip to content

Commit 7e4172d

Browse files
authored
Merge pull request #24 from techjarves/github-user-issues-548f0
Update from task c065f824-87a0-4aa4-957d-4a29fa0548f0
2 parents 612a72b + 16bf74d commit 7e4172d

2 files changed

Lines changed: 24 additions & 42 deletions

File tree

.gitignore

Lines changed: 19 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,24 @@
1-
# Miscellaneous
2-
*.class
3-
*.log
4-
*.pyc
5-
*.swp
6-
.DS_Store
7-
.atom/
8-
.build/
9-
.buildlog/
10-
.history
11-
.svn/
12-
.swiftpm/
13-
migrate_working_dir/
14-
15-
# IntelliJ related
16-
*.iml
17-
*.ipr
18-
*.iws
19-
.idea/
20-
21-
# The .vscode folder contains launch configuration and tasks you configure in
22-
# VS Code which you may wish to be included in version control, so this line
23-
# is commented out by default.
24-
#.vscode/
1+
```
2+
# Dependencies
3+
.pub/
4+
.buildlog
5+
.flutter-plugins
6+
.flutter-plugin-dependencies
7+
.packages
258

26-
# Flutter/Dart/Pub related
27-
**/doc/api/
28-
**/ios/Flutter/.last_build_id
9+
# Build outputs
10+
build/
2911
.dart_tool/
30-
.flutter-plugins-dependencies
31-
.pub-cache/
32-
.pub/
33-
/build/
34-
/coverage/
3512

36-
# Symbolication related
37-
app.*.symbols
13+
# Environment
14+
.env
15+
.env.local
16+
*.env.*
3817

39-
# Obfuscation related
40-
app.*.map.json
18+
# Logs
19+
*.log
4120

42-
# Android Studio will place build artifacts here
43-
/android/app/debug
44-
/android/app/profile
45-
/android/app/release
21+
# OS generated files
22+
.DS_Store
23+
Thumbs.db
24+
```

lib/screens/home_screen.dart

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,11 @@ class _HomeScreenState extends State<HomeScreen> {
395395
Widget _buildMobileChatTab() {
396396
return Column(
397397
children: [
398-
// Mobile top bar — minimal
399-
_buildMobileTopBar(),
398+
// Mobile top bar — minimal with SafeArea for status bar
399+
SafeArea(
400+
bottom: false,
401+
child: _buildMobileTopBar(),
402+
),
400403
// Model loading progress banner
401404
Obx(() {
402405
if (!_modelCtrl.isLoadingModel.value) return const SizedBox.shrink();

0 commit comments

Comments
 (0)