Initial commit: Accessible SSH Terminal

This commit is contained in:
2025-12-22 01:02:44 -06:00
commit 7a967ef759
133 changed files with 6629 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// lib/models/terminal_line.dart
// This file will define the data model for a single line of terminal output.
class TerminalLine {
final String text;
// TODO: Add properties for ANSI styling, e.g., color, bold, etc.
TerminalLine({required this.text});
}