voo_terminal 0.1.2 copy "voo_terminal: ^0.1.2" to clipboard
voo_terminal: ^0.1.2 copied to clipboard

A powerful terminal/console UI component for Flutter with multiple display modes, theming, and command support

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:voo_terminal_example/pages/home_page.dart';

void main() {
  runApp(const VooTerminalExampleApp());
}

/// Example app demonstrating VooTerminal features.
class VooTerminalExampleApp extends StatelessWidget {
  const VooTerminalExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'VooTerminal Example',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(
          seedColor: Colors.indigo,
          brightness: Brightness.light,
        ),
        useMaterial3: true,
      ),
      darkTheme: ThemeData(
        colorScheme: ColorScheme.fromSeed(
          seedColor: Colors.indigo,
          brightness: Brightness.dark,
        ),
        useMaterial3: true,
      ),
      themeMode: ThemeMode.system,
      home: const HomePage(),
    );
  }
}
0
likes
150
points
66
downloads

Publisher

verified publishervoostack.com

Weekly Downloads

A powerful terminal/console UI component for Flutter with multiple display modes, theming, and command support

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

equatable, flutter, intl, voo_tokens, voo_ui_core

More

Packages that depend on voo_terminal