[PR #2169] [CLOSED] [feat] : add custom title bar #5138

Closed
opened 2026-03-23 22:17:24 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2169
Author: @GouravShDev
Created: 4/2/2023
Status: Closed

Base: mainHead: feat/custom_title_bar


📝 Commits (10+)

  • 7fbc24f chore: setup window title bar
  • 5782b5e feat: add titlebar in home screen
  • dbd1d06 fix: default window size
  • bc64b64 Merge branch 'main' into feat/custom_title_bar
  • 5ea5490 refactor: remove comment in my_application.cc
  • 40b6995 fix: change file picker version to 5
  • a1cea33 chore: remove redundant colors in titlebar
  • 42f18e4 fix: change button color in titlebar
  • 535cb1c Merge branch 'main' into feat/custom_title_bar
  • 12f0f68 fix: bitsdojo on macos

📊 Changes

27 files changed (+448 additions, -796 deletions)

View changed files

📝 CHANGELOG.md (+16 -0)
📝 README.md (+4 -3)
📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/assets/translations/en.json (+3 -1)
frontend/appflowy_flutter/lib/core/frameless_window.dart (+0 -68)
📝 frontend/appflowy_flutter/lib/main.dart (+14 -3)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_data_persistence.dart (+1 -6)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart (+13 -25)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_page.dart (+30 -19)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_layout_setting.dart (+7 -4)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_toolbar.dart (+103 -7)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/date_cell/date_cal_bloc.dart (+29 -6)
📝 frontend/appflowy_flutter/lib/user/presentation/skip_log_in_screen.dart (+0 -21)
frontend/appflowy_flutter/lib/window/app_window.dart (+0 -37)
frontend/appflowy_flutter/lib/window/window.dart (+0 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/home_screen.dart (+79 -7)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/menu.dart (+25 -34)
📝 frontend/appflowy_flutter/linux/my_application.cc (+3 -1)
📝 frontend/appflowy_flutter/macos/Runner.xcodeproj/project.pbxproj (+1 -0)

...and 7 more files

📄 Description

closes #1995

  • Added title bar in home screen using bitsdojo_window as mentioned in the issue.
  • used default colors for window button apart from icon button which uses primary color
  • Tested only on windows machine as I don't have other OS machines

Light Theme:
image
Dark Theme:
image


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/2169 **Author:** [@GouravShDev](https://github.com/GouravShDev) **Created:** 4/2/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/custom_title_bar` --- ### 📝 Commits (10+) - [`7fbc24f`](https://github.com/AppFlowy-IO/AppFlowy/commit/7fbc24ffd754017de1a1f2a1cc7daa437826483e) chore: setup window title bar - [`5782b5e`](https://github.com/AppFlowy-IO/AppFlowy/commit/5782b5e48c638a61e4bdcc4ddcd0a3a429783c7b) feat: add titlebar in home screen - [`dbd1d06`](https://github.com/AppFlowy-IO/AppFlowy/commit/dbd1d0631019b5b76d37c669ee00599860117e69) fix: default window size - [`bc64b64`](https://github.com/AppFlowy-IO/AppFlowy/commit/bc64b6416646caa0cff82793402eb6e715296766) Merge branch 'main' into feat/custom_title_bar - [`5ea5490`](https://github.com/AppFlowy-IO/AppFlowy/commit/5ea54907feeba8757aca2ab6fee3fcbfd5dd6459) refactor: remove comment in my_application.cc - [`40b6995`](https://github.com/AppFlowy-IO/AppFlowy/commit/40b69957082db35575f0438d60ce95e7e8785a03) fix: change file picker version to 5 - [`a1cea33`](https://github.com/AppFlowy-IO/AppFlowy/commit/a1cea33c9dab10e359ef4241dda90740a7398426) chore: remove redundant colors in titlebar - [`42f18e4`](https://github.com/AppFlowy-IO/AppFlowy/commit/42f18e4ea40ac236c339286e1fc32bfc1d228cfc) fix: change button color in titlebar - [`535cb1c`](https://github.com/AppFlowy-IO/AppFlowy/commit/535cb1c9c7d03bac31b7275eeeaf7885f8467668) Merge branch 'main' into feat/custom_title_bar - [`12f0f68`](https://github.com/AppFlowy-IO/AppFlowy/commit/12f0f6843aa08f2ed0ba1099fb5c6aaa4b3ef149) fix: bitsdojo on macos ### 📊 Changes **27 files changed** (+448 additions, -796 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+16 -0) 📝 `README.md` (+4 -3) 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+3 -1) ➖ `frontend/appflowy_flutter/lib/core/frameless_window.dart` (+0 -68) 📝 `frontend/appflowy_flutter/lib/main.dart` (+14 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_data_persistence.dart` (+1 -6) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart` (+13 -25) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_page.dart` (+30 -19) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_layout_setting.dart` (+7 -4) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_toolbar.dart` (+103 -7) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/date_cell/date_cal_bloc.dart` (+29 -6) 📝 `frontend/appflowy_flutter/lib/user/presentation/skip_log_in_screen.dart` (+0 -21) ➖ `frontend/appflowy_flutter/lib/window/app_window.dart` (+0 -37) ➖ `frontend/appflowy_flutter/lib/window/window.dart` (+0 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/home_screen.dart` (+79 -7) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/menu.dart` (+25 -34) 📝 `frontend/appflowy_flutter/linux/my_application.cc` (+3 -1) 📝 `frontend/appflowy_flutter/macos/Runner.xcodeproj/project.pbxproj` (+1 -0) _...and 7 more files_ </details> ### 📄 Description closes #1995 - Added title bar in home screen using bitsdojo_window as mentioned in the issue. - used default colors for window button apart from icon button which uses primary color - Tested only on windows machine as I don't have other OS machines Light Theme: ![image](https://user-images.githubusercontent.com/74348508/229366287-c3891fe8-8df0-4f38-a18c-641270878889.png) Dark Theme: ![image](https://user-images.githubusercontent.com/74348508/229366296-1d3ff988-8d8a-4a0e-85e3-1eb5621fb36d.png) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:17:24 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#5138
No description provided.