#Flipper Application Package Store (FAPS)

7 messages · Page 1 of 1 (latest)

jaunty geode
#

I'm planning on making this a reality, some C coding, lots of JS code will be involved, heres a mockup

#

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();
jaunty geode
spiral bluff
#

Soon (more or less) an official app catalog will be available.

real veldt
stable oar
#

Pretty excited for this.