SkillAgentSearch skills...

Garden.simpletablelayout

Simple Table Layout: Implements table layout with rowspan / colspan capabilities (like HTML tables)

Install / Use

/learn @kivy-garden/Garden.simpletablelayout
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

screenshot

Simple Table Layout

Simple Table like Layout that understands rowspan and colspan properties of children (like HTML tables).

Usage (kv):

Example 1:

SimpleTableLayout:
    rows: 2
    cols: 2

    Button:
        text: "C1"
        colspan: 2
    Button:
        text: "C2"
    Button:
        text: "C3"

creates:

###########

#    C1   #

###########

# C2 # C3 #

###########

Example 2:

SimpleTableLayout:
    rows: 2
    cols: 2

    Button:
        text: "C1"
        rowspan: 2
    Button:
        text: "C2"
    Button:
        text: "C3"

creates:

###########

#    # C2 #

# C1 ######

#    # C3 #

###########

Lastly, SimpleTableLayout.cell(row, col) returns widget at that position in the grid.

License

MIT license.

Credits

Author: Jeyson Molina jeyson.mco@gmail.com

Related Skills

View on GitHub
GitHub Stars10
CategoryDevelopment
Updated1y ago
Forks4

Languages

Python

Security Score

75/100

Audited on Jan 3, 2025

No findings