Beautiful Design App

you can only make that with inline lists that will be controlled by action

Anything that doesnā€™t require user input could probably be realtively easy with dynamically built html/css inserted into the screen with a rich text component. Once you start to mix your own design with user input components, then it becomes a bit more limited and complicated.

For example, the Month Layout tab in the following app has two different types of calendars on it. The top calendar is an inline list with some serious manipulation through CSS, but the bonus is that you can interact with each day by tapping on them. The bottom calendar is built completely with dynamically built html div tags in one rich text component, along with a second rich text component that handles the css. It looks pretty but you canā€™t interact with it like you can on the top calendar. You might be able to get something close to your image, but exactly the same might be hard. I would take some creative freedom and see if you can come up with something decent and present that to see if they like it or not.

3 Likes

Yes, it is pulling dataā€¦ I will show you what I am doing currently.

1 Like

I will do this Jeff. Thanks man. Could you show me what you mean code-wise about the Rich Text HTML and CSS? I didnā€™t relive I could use HTML in one? Just markup language.

The app I shared is copyable.

Anything other than Markdown isnā€™t officially supported, but many of us some html or css sparingly.

2 Likes

Canā€™t view your video brother

1 Like

Thank you @gvalero :grin:

Hi brother, I re-recorded the flow for you:

3 Likes

ā˜… For pages where you want to hide the tab at the bottom of the app.
ā˜… Hiding that tab closes the way to other tabs.
ā˜… In that case, you may need a custom tab.

4 Likes

Stunningā€¦ would love to know how you make videos play automatically!

Itā€™s a GIF, not a video.

1 Like

Beautiful brother.
You have to show me the css for this

For the tile wrap in the first screen.

<pre><span><style>
[data-test="tile-item"] .tile-title {
white-space: break-spaces;
}
</pre></span></style>

For all the things inside:

<div><div>
    <style>
    [data-test="glide-app-bar"] >* {
    backdrop-filter: blur(2px);
    background:transparent;
    -webkit-backdrop-filter: blur(2px);
    }
    #app-root div[opacity='1'] {
      color: transparent; 
    }
    .jiuuwu svg {
    display: none;
    }
    .gpkkHC svg {
    display: none;
    }
    .gpkkHC {
    position: unset;
    }
    .glbESi {
    padding-top: 10px;
    }
    [data-test="list-item"] {
    background-color: white;
    }
    .builder [data-test="list-item"].interactive:hover {
    background-color: #00CC66;
    }
    [data-test="card-item"] .card-subtitle {
    padding-top: 5px;
    -webkit-line-clamp: unset;
    overflow: visible;
    white-space: break-spaces;
    font-size: 0.25 prem;
    }
    [data-test="card-item"] .card-title {
    text-align: center;
    color: #00CC66;
    font-size: 1rem;
    font-weight: bold;
    align: center;
    }
    [data-test="card-item"] {
    border-radius: 5px;
    }
3 Likes

Iā€™m going to need help from you understanding this.
Let me know if you have time this week and weā€™ll do a zoom

@Robert_Petitto or anyone else
I changed the BG color or the card and how I remove this Hover effect?

4 Likes

K, fixed.

Added:

[data-test="tile-item"]:hover {
background-color: BG-COLOR;
}

Used the same bg color as hover.

5 Likes

quick fix for Swipe Card Styleā€™s inline vertical list to keep things on screen.

[data-test=ā€œapp-vertical-listā€] div div {
max-width: 100%;
}

3 Likes

Hereā€™s something I made:
the image component doesnā€™t have a ā€˜roundedā€™ feature, soā€¦

<pre><span><style>
[class="sc-dsXyEt fKhxPv sc-bRucMC dfUOtl contain undefined"] {
border-radius: 100%;

it doesnt seems to do anything on my app. my inline list still being cropped

@Lucas_Pires @Robert_Petitto

Hi both,

Do you have any idea how to add bg color to the screen instead of using bg image?