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.
Yes, it is pulling dataā¦ I will show you what I am doing currently.
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.
Canāt view your video brother
Thank you @gvalero
Hi brother, I re-recorded the flow for you:
ā
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.
- The CSS presented by Lucas_Pires is used.
Stunningā¦ would love to know how you make videos play automatically!
Itās a GIF, not a video.
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;
}
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?
K, fixed.
Added:
[data-test="tile-item"]:hover {
background-color: BG-COLOR;
}
Used the same bg color as hover.
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%;
}
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
Hi both,
Do you have any idea how to add bg color to the screen instead of using bg image?