[PR #1872] [MERGED] WIP: Retheme the mobile app using NativewindUI #1915

Closed
opened 2026-03-02 11:59:44 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/karakeep-app/karakeep/pull/1872
Author: @MohamedBassem
Created: 8/25/2025
Status: Merged
Merged: 8/26/2025
Merged by: @MohamedBassem

Base: mainHead: mobile-retheme


📝 Commits (10+)

📊 Changes

47 files changed (+1991 additions, -433 deletions)

View changed files

📝 apps/mobile/app/_layout.tsx (+53 -48)
📝 apps/mobile/app/dashboard/(tabs)/_layout.tsx (+3 -0)
📝 apps/mobile/app/dashboard/(tabs)/index.tsx (+5 -4)
📝 apps/mobile/app/dashboard/(tabs)/lists.tsx (+16 -18)
📝 apps/mobile/app/dashboard/(tabs)/settings.tsx (+23 -22)
📝 apps/mobile/app/dashboard/bookmarks/[slug]/index.tsx (+7 -4)
📝 apps/mobile/app/dashboard/bookmarks/[slug]/info.tsx (+173 -114)
📝 apps/mobile/app/dashboard/bookmarks/[slug]/manage_lists.tsx (+4 -3)
📝 apps/mobile/app/dashboard/bookmarks/[slug]/manage_tags.tsx (+8 -18)
📝 apps/mobile/app/dashboard/bookmarks/new.tsx (+6 -2)
📝 apps/mobile/app/dashboard/lists/new.tsx (+6 -3)
📝 apps/mobile/app/dashboard/search.tsx (+24 -28)
📝 apps/mobile/app/dashboard/settings/bookmark-default-view.tsx (+4 -5)
📝 apps/mobile/app/dashboard/settings/theme.tsx (+4 -5)
📝 apps/mobile/app/error.tsx (+3 -2)
📝 apps/mobile/app/sharing.tsx (+8 -6)
📝 apps/mobile/app/signin.tsx (+15 -13)
📝 apps/mobile/app/test-connection.tsx (+9 -5)
📝 apps/mobile/babel.config.js (+3 -0)
📝 apps/mobile/components/FullPageError.tsx (+5 -2)

...and 27 more files

📄 Description

Current known bugs:

  • Something is wrong in the bookmark info page. When you add a new line in the Notes text field, the layout breaks.
  • The chevron right component in the dark mode on android is not very readable.
  • The ap doesn't follow system theme.
  • The blue color of the selected tab doesn't look good in dark mode

Fixes: #1011, #1708


🔄 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/karakeep-app/karakeep/pull/1872 **Author:** [@MohamedBassem](https://github.com/MohamedBassem) **Created:** 8/25/2025 **Status:** ✅ Merged **Merged:** 8/26/2025 **Merged by:** [@MohamedBassem](https://github.com/MohamedBassem) **Base:** `main` ← **Head:** `mobile-retheme` --- ### 📝 Commits (10+) - [`78ebcf4`](https://github.com/karakeep-app/karakeep/commit/78ebcf43e6038bf3534f5368d3abb39b135fb951) Add nativewindui - [`cdd9409`](https://github.com/karakeep-app/karakeep/commit/cdd9409175c3106377e99536302f7ca4c776a3a5) migrate to nativewindui text - [`bdb070a`](https://github.com/karakeep-app/karakeep/commit/bdb070a5ce76d5262f5782deed736f7a78cca714) Replace buttons with nativewindui buttons - [`fb1f8ba`](https://github.com/karakeep-app/karakeep/commit/fb1f8ba184334b1d87193503f15e9f330964a406) Use nativewindui search input - [`13a7d3c`](https://github.com/karakeep-app/karakeep/commit/13a7d3cedba3fa923aa1c186c4fae6fb9689ef12) fix the divider color - [`b788580`](https://github.com/karakeep-app/karakeep/commit/b788580fec0767f1b77b3adf2a1bf8e8f20d174c) More changes - [`c4ebb13`](https://github.com/karakeep-app/karakeep/commit/c4ebb133584add569fa8b3b35686ceb8383aa355) fix manage tag icon - [`a8d50f7`](https://github.com/karakeep-app/karakeep/commit/a8d50f74bad721c60cd1337b98f4a684fe484a62) fix styling of bookmark card - [`6ec0b73`](https://github.com/karakeep-app/karakeep/commit/6ec0b73fa80e56367f52f192c09d945fdf3e0dbe) fix ios compilation - [`276380b`](https://github.com/karakeep-app/karakeep/commit/276380b67ee90b57369e0761efab9be64305350e) fix search clear ### 📊 Changes **47 files changed** (+1991 additions, -433 deletions) <details> <summary>View changed files</summary> 📝 `apps/mobile/app/_layout.tsx` (+53 -48) 📝 `apps/mobile/app/dashboard/(tabs)/_layout.tsx` (+3 -0) 📝 `apps/mobile/app/dashboard/(tabs)/index.tsx` (+5 -4) 📝 `apps/mobile/app/dashboard/(tabs)/lists.tsx` (+16 -18) 📝 `apps/mobile/app/dashboard/(tabs)/settings.tsx` (+23 -22) 📝 `apps/mobile/app/dashboard/bookmarks/[slug]/index.tsx` (+7 -4) 📝 `apps/mobile/app/dashboard/bookmarks/[slug]/info.tsx` (+173 -114) 📝 `apps/mobile/app/dashboard/bookmarks/[slug]/manage_lists.tsx` (+4 -3) 📝 `apps/mobile/app/dashboard/bookmarks/[slug]/manage_tags.tsx` (+8 -18) 📝 `apps/mobile/app/dashboard/bookmarks/new.tsx` (+6 -2) 📝 `apps/mobile/app/dashboard/lists/new.tsx` (+6 -3) 📝 `apps/mobile/app/dashboard/search.tsx` (+24 -28) 📝 `apps/mobile/app/dashboard/settings/bookmark-default-view.tsx` (+4 -5) 📝 `apps/mobile/app/dashboard/settings/theme.tsx` (+4 -5) 📝 `apps/mobile/app/error.tsx` (+3 -2) 📝 `apps/mobile/app/sharing.tsx` (+8 -6) 📝 `apps/mobile/app/signin.tsx` (+15 -13) 📝 `apps/mobile/app/test-connection.tsx` (+9 -5) 📝 `apps/mobile/babel.config.js` (+3 -0) 📝 `apps/mobile/components/FullPageError.tsx` (+5 -2) _...and 27 more files_ </details> ### 📄 Description Current known bugs: - [x] Something is wrong in the bookmark info page. When you add a new line in the Notes text field, the layout breaks. - [x] The chevron right component in the dark mode on android is not very readable. - [x] The ap doesn't follow system theme. - [x] The blue color of the selected tab doesn't look good in dark mode Fixes: #1011, #1708 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 11:59:44 +03: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
starred/karakeep#1915
No description provided.