muse 0.1.0-dev.1
muse: ^0.1.0-dev.1 copied to clipboard
A Flutter-like reactive terminal UI framework for Dart, powered by OpenTUI.
example/main.dart
/// Canonical Muse example — a minimal Flutter-like terminal app.
///
/// pub.dev surfaces this file on the package's Example tab. It reuses the
/// [HelloApp] widget from `hello.dart`; browse the other files in this
/// directory (and `example/README.md`) for focused demos of state, layout,
/// focus, scrolling, animation, and input.
///
/// Run from the package root:
/// dart run example/main.dart
library;
import 'package:muse/muse.dart';
import 'hello.dart';
void main() => runTuiApp(const HelloApp());