textual-widget-development
Installation
SKILL.md
Textual Widget Development
Purpose
Build reusable, composable Textual widgets that follow functional principles, proper lifecycle management, and type safety. Widgets are the fundamental building blocks of Textual applications.
Quick Start
from textual.app import ComposeResult
from textual.widgets import Static, Container
from textual.containers import Vertical
class SimpleWidget(Static):
"""A simple reusable widget."""
Related skills