#Flipper Application Package Store (FAPS)
7 messages · Page 1 of 1 (latest)
Mockup JS code
var pageSpace = document.getElementsByClassName('q-page flex-center column')[0]
function makeBlocks() {
var table = document.createElement('table')
table.style = "width: 100%";
for (var i = 0; i < 3; i++) {
var row = document.createElement('tr');
row.style = "width: 100%";
row.className = "row";
for (var j = 0; j < 3; j++) {
var box = document.createElement('td');
var header = document.createElement('h4');
var description = document.createElement('h6');
header.innerText = "App Name"
header.style = "margin-top: 1%; margin-bottom: 0;"
description.style = "margin-top: 5%; margin-bottom: 0;"
description.innerText = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam"
box.className = "box";
box.style = "padding: 10px; width: 30%; border: 3px black solid; margin: 1%"
box.append(header);
box.append(description);
row.appendChild(box);
}
table.appendChild(row);
pageSpace.appendChild(table);
}
}
makeBlocks();
Soon (more or less) an official app catalog will be available.
Exciting!
This might tie in, seems like you could both working on different ends of the same thing: #1047873255563866156 message
Pretty excited for this.