wriggle 2.1.0
wriggle: ^2.1.0 copied to clipboard
Text-based UI framework for pure command-line Dart
example/main.dart
import 'package:wriggle/wriggle.dart';
void main(List<String> arguments) {
runApp(MyApp());
}
class MyApp extends Component {
@override
Renderable build(WriggleContext context) {
return const Center(child: Text('Hello world!'));
}
}