fake_terminal 0.0.2 fake_terminal: ^0.0.2 copied to clipboard
A customizable fake terminal widget for Flutter applications.
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: const Text("Fake Terminal Example")),
),
);
}
}