from textual.app import App, ComposeResult from textual.widgets import Input, Button from textual.containers import Container class Browset(App): CSS_PATH = "browset.css" def compose(self) -> ComposeResult: yield Container( Button("🔙"), # ⏪ Button("🔝"), # ⏫ Button("🔜"), # ⏩ Button("🔄"), # 🔁 Input(placeholder="Enter URI"), id="toolbar" ) if __name__ == "__main__": app = Browset() app.run()