[Feature Request] Mobile Support #11

Open
opened 2026-02-04 16:27:13 +03:00 by OVERLORD · 23 comments
Owner

Originally created by @tionis on GitHub (Aug 13, 2020).

Currently the web app doesn't scale right on mobile. The design should be responsive for better usability on smartphones and other tiny screen size devices.

Originally created by @tionis on GitHub (Aug 13, 2020). Currently the web app doesn't scale right on mobile. The design should be responsive for better usability on smartphones and other tiny screen size devices.
OVERLORD added the enhancement label 2026-02-04 16:27:13 +03:00
Author
Owner

@tionis commented on GitHub (Aug 13, 2020):

I think it would also be a great idea to move the project title into the top "Planka" bar, as it really takes up much screen real estate on for example 13'' screens.
It tested this very primitively and also think that the board overview bar should then get hard edges on the top and rounded edges on the bottom, so that all navigation move up a bit optically. This could separate content and navigation a bit more.

@tionis commented on GitHub (Aug 13, 2020): I think it would also be a great idea to move the project title into the top "Planka" bar, as it really takes up much screen real estate on for example 13'' screens. It tested this very primitively and also think that the board overview bar should then get hard edges on the top and rounded edges on the bottom, so that all navigation move up a bit optically. This could separate content and navigation a bit more.
Author
Owner

@nickbe commented on GitHub (Aug 18, 2020):

This is also already on our list. We will improve the mobile views and you will have a much better usability when this is done.

@nickbe commented on GitHub (Aug 18, 2020): This is also already on our list. We will improve the mobile views and you will have a much better usability when this is done.
Author
Owner

@timdonovanuk commented on GitHub (Aug 19, 2021):

Looking forward to this!

@timdonovanuk commented on GitHub (Aug 19, 2021): Looking forward to this!
Author
Owner

@4jag commented on GitHub (May 18, 2022):

1-3/4 years later, and.... Planka is still completely unresponsive. (as in not mobile-friendly).
Any plans for an android client? (would hope to support both small-screen phones and larger tablets).

@4jag commented on GitHub (May 18, 2022): 1-3/4 years later, and.... Planka is still completely unresponsive. (as in not mobile-friendly). Any plans for an android client? (would hope to support both small-screen phones and larger tablets).
Author
Owner

@JohnRock0422 commented on GitHub (Sep 7, 2022):

+1

Any roadmap?

@JohnRock0422 commented on GitHub (Sep 7, 2022): +1 Any roadmap?
Author
Owner

@frogman544 commented on GitHub (Sep 8, 2022):

It would be nice to have a roadmap that is in the "Client demo" for Planka.
In addition to the mocked data, also have the actual roadmap.

Cheers

@frogman544 commented on GitHub (Sep 8, 2022): It would be nice to have a roadmap that is in the "Client demo" for Planka. In addition to the mocked data, also have the actual roadmap. Cheers
Author
Owner

@meltyshev commented on GitHub (Sep 9, 2022):

This is a good idea 🤔

@meltyshev commented on GitHub (Sep 9, 2022): This is a good idea 🤔
Author
Owner

@hoggatt commented on GitHub (Jan 21, 2023):

Love Planka!

Mobile support would put it over the top! I'd love to be able to easily use this from my phone when I'm at the store or on the go. It's not bad as-is since Planka is very vertical, but a few UI tweaks (basically: don't make the whole page so big, or just copy trello) would go a long way.

@hoggatt commented on GitHub (Jan 21, 2023): Love Planka! Mobile support would put it over the top! I'd love to be able to easily use this from my phone when I'm at the store or on the go. It's not bad as-is since Planka is very vertical, but a few UI tweaks (basically: don't make the whole page so big, or just copy trello) would go a long way.
Author
Owner

@kekkodance commented on GitHub (May 1, 2023):

sorry for necroing, any updates?

@kekkodance commented on GitHub (May 1, 2023): sorry for necroing, any updates?
Author
Owner

@ncrmnt commented on GitHub (Aug 8, 2023):

bump

@ncrmnt commented on GitHub (Aug 8, 2023): bump
Author
Owner

@arturfse commented on GitHub (Aug 17, 2023):

Found out that you can add this style and it will look much better in mobile devices
#root { overflow-y: hidden; }

@arturfse commented on GitHub (Aug 17, 2023): Found out that you can add this style and it will look much better in mobile devices `#root { overflow-y: hidden; }`
Author
Owner

@arturfse commented on GitHub (Aug 17, 2023):

The fastest, but not the best solution is just to add sub filter to your Nginx config

location / {
    sub_filter </head> '</head><style>#root{overflow-y:hidden}</style>';
    sub_filter_once on;
    ...
}
@arturfse commented on GitHub (Aug 17, 2023): The fastest, but not the best solution is just to add sub filter to your Nginx config ``` location / { sub_filter </head> '</head><style>#root{overflow-y:hidden}</style>'; sub_filter_once on; ... } ```
Author
Owner

@thanhnguyen2187 commented on GitHub (Sep 23, 2023):

Hi. Is there any update on this? Planka as a PWA feels pretty nice on mobile, but on visiting a board's page, I do feel it is not the best mobile experience I have experienced.

@thanhnguyen2187 commented on GitHub (Sep 23, 2023): Hi. Is there any update on this? Planka as a PWA feels pretty nice on mobile, but on visiting a board's page, I do feel it is not the best mobile experience I have experienced.
Author
Owner

@timdonovanuk commented on GitHub (Jan 2, 2024):

image

:(

@timdonovanuk commented on GitHub (Jan 2, 2024): ![image](https://github.com/plankanban/planka/assets/8156439/01a5253d-12fe-4175-be13-f0b378f12af4) :(
Author
Owner

@Walter-o commented on GitHub (Jan 29, 2024):

Bumping as this would be insanely epic!

edit:
best way i found to modify CSS is doing a bind mount from a local css file to the css file inside the docker container.

it allows me to update it without restarting anything.

still i hope mobile support comes some day.

edit2:
To edit css live:

  • do docker cp planka:/app/public/static/css/main.710bf5a4.css ./custom.css
    this copies the planka css file to outside the docker container.
  • add this to docker-compose:
volumes:
  - ./custom.css:/app/public/static/css/main.710bf5a4.css:ro

this overlays your custom css file over the place of the original

  • restart planka

after that you can modify the custom.css file live and it will be reflected in planka

@Walter-o commented on GitHub (Jan 29, 2024): Bumping as this would be insanely epic! edit: best way i found to modify CSS is doing a bind mount from a local css file to the css file inside the docker container. it allows me to update it without restarting anything. still i hope mobile support comes some day. edit2: To edit css live: - do `docker cp planka:/app/public/static/css/main.710bf5a4.css ./custom.css` this copies the planka css file to outside the docker container. - add this to docker-compose: ```docker-compose volumes: - ./custom.css:/app/public/static/css/main.710bf5a4.css:ro ``` this overlays your custom css file over the place of the original - restart planka after that you can modify the `custom.css` file live and it will be reflected in planka
Author
Owner

@papiforcex commented on GitHub (May 31, 2024):

Hi, if there's no changes applied yet for this feature, I'll look forward and try fixing it

@papiforcex commented on GitHub (May 31, 2024): Hi, if there's no changes applied yet for this feature, I'll look forward and try fixing it
Author
Owner

@meltyshev commented on GitHub (Jun 1, 2024):

Hi, if there's no changes applied yet for this feature, I'll look forward and try fixing it

Hi! We haven't started working on this yet, so we'd really appreciate any help :)

@meltyshev commented on GitHub (Jun 1, 2024): > Hi, if there's no changes applied yet for this feature, I'll look forward and try fixing it Hi! We haven't started working on this yet, so we'd really appreciate any help :)
Author
Owner

@haldi4803 commented on GitHub (Aug 14, 2024):

IMHO the most comfortable way for Mobile Usage would be to make each list Stretch on the Screen Width and and use swipe gestures or small buttons to switch left and right.

It's barely useable right now... until you Open a Task and only have half of it displayed.
image

@haldi4803 commented on GitHub (Aug 14, 2024): IMHO the most comfortable way for Mobile Usage would be to make each list Stretch on the Screen Width and and use swipe gestures or small buttons to switch left and right. It's barely useable right now... until you Open a Task and only have half of it displayed. ![image](https://github.com/user-attachments/assets/c1ec89c9-2168-4efd-ba4f-c834f6a22889)
Author
Owner

@Go00oglin commented on GitHub (Oct 13, 2024):

I'm voting to having a mobile version. It's 100500 must have thing

@Go00oglin commented on GitHub (Oct 13, 2024): I'm voting to having a mobile version. It's 100500 must have thing
Author
Owner

@AndrisJefimovs commented on GitHub (Feb 15, 2025):

Is there still anything to do on this topic?
To me it seems that the website in almost fully mobile responsive by now.

@AndrisJefimovs commented on GitHub (Feb 15, 2025): Is there still anything to do on this topic? To me it seems that the website in almost fully mobile responsive by now.
Author
Owner

@meltyshev commented on GitHub (Feb 17, 2025):

Is there still anything to do on this topic? To me it seems that the website in almost fully mobile responsive by now.

Overall, everything looks much better than before and is now usable. However, there are still many small unresolved issues. For example, popups should open in full-screen mode on mobile devices. The action buttons in the card modal should probably be moved above the comments section, otherwise they are difficult to reach: #981.

@meltyshev commented on GitHub (Feb 17, 2025): > Is there still anything to do on this topic? To me it seems that the website in almost fully mobile responsive by now. Overall, everything looks much better than before and is now usable. However, there are still many small unresolved issues. For example, popups should open in full-screen mode on mobile devices. The action buttons in the card modal should probably be moved above the comments section, otherwise they are difficult to reach: #981.
Author
Owner

@meupyokea commented on GitHub (Jan 30, 2026):

hello

any plans for mobile apps for both community and pro version?

my team uses the trello mobile app often given how everyone is navigating on mobile these days and always on the go and no longer deskbound.

@meupyokea commented on GitHub (Jan 30, 2026): hello any plans for mobile apps for both community and pro version? my team uses the trello mobile app often given how everyone is navigating on mobile these days and always on the go and no longer deskbound.
Author
Owner

@meltyshev commented on GitHub (Jan 30, 2026):

hello

any plans for mobile apps for both community and pro version?

my team uses the trello mobile app often given how everyone is navigating on mobile these days and always on the go and no longer deskbound.

Hey! We kind of started with that, but in a simple Notes version, so you can add cards and do some basic things. It'll take some time to extend it into a fully working app.

Here are the links: https://planka-notes.hillerdaniel.de

@meltyshev commented on GitHub (Jan 30, 2026): > hello > > any plans for mobile apps for both community and pro version? > > my team uses the trello mobile app often given how everyone is navigating on mobile these days and always on the go and no longer deskbound. Hey! We kind of started with that, but in a simple Notes version, so you can add cards and do some basic things. It'll take some time to extend it into a fully working app. Here are the links: https://planka-notes.hillerdaniel.de
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/planka#11