Write text directly to the terminal without any modification of styles Args: text (str): The text to write to the console
(self, text: str)
| 394 | return WindowsCoordinates(row=screen_size.Y, col=screen_size.X) |
| 395 | |
| 396 | def write_text(self, text: str) -> None: |
| 397 | """Write text directly to the terminal without any modification of styles |
| 398 | |
| 399 | Args: |
| 400 | text (str): The text to write to the console |
| 401 | """ |
| 402 | self.write(text) |
| 403 | self.flush() |
| 404 | |
| 405 | def write_styled(self, text: str, style: Style) -> None: |
| 406 | """Write styled text to the terminal. |