DesarrolloAntonio / Shiori-Android-Client

Android app client for Shiori
Apache License 2.0
132 stars 3 forks source link

The interface is very large #26

Closed Katarn closed 7 months ago

Katarn commented 7 months ago

There is little space left for a list of articles.

image

DesarrolloAntonio commented 7 months ago

I am planning to create a compact view.

DesarrolloAntonio commented 7 months ago

I've created a compat view

Any suggestion is welcome.

Katarn commented 7 months ago

Thank you! But the bottom line with the sections still looks quite large. I suggest doing it like in Squawker.

image

You can also see in your screenshot that the second title line is exactly in the middle of the card’s height. It's like there's a little space missing from the buttons at the bottom of the card. Maybe reduce the line-height of the title a little?

DesarrolloAntonio commented 7 months ago

The app uses Google's Material 3, which sets specific dimensions for the bottom bar according to its guidelines. What I can do is move the icon to the side of the text to create more space. https://m3.material.io/components/tabs/specs

image

Katarn commented 7 months ago

What I can do is move the icon to the side of the text to create more space.

Great idea.

And the question is - can the framework switch to other versions of Material for example, for older versions of Android, for which Material 3 is not a native design?

DesarrolloAntonio commented 7 months ago

What I can do is move the icon to the side of the text to create more space.

Great idea.

And the question is - can the framework switch to other versions of Material for example, for older versions of Android, for which Material 3 is not a native design?

The documentation does not specify what the minimum version is, but in the example project for Jetpack Compose with Material 3, it is using API 21, which is Android 5. There is a feature like 'Dynamic color' that is only available from Android 12 onwards.

https://github.com/android/compose-samples/tree/main/Reply

Katarn commented 7 months ago

The new look of compact view is great. Thank you!