FLUTTER ECOSYSTEM

mvitlov/cli_spin

一个 Dart 包,通过为同步和异步操作显示简洁的终端旋转进度条来提升用户体验。

cli_spin 项目封面
Stars
9
Forks
0
最近推送(UTC)
2023年10月18日
项目状态
未归档
Marin Vitlov GitHub avatar
GITHUB User

Marin Vitlov ↗

Flutter ❤️

ABOUT YOU SE & Co. KGZagreb官方网站 ↗
语言Dart

此仓库发布的插件

使用的依赖

依赖清单 5 项
  • ansi_strip^0.1.1+1
  • string_width^0.1.5
  • lints开发依赖^2.0.0
  • mocktail开发依赖^1.0.1
  • test开发依赖^1.21.0

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

A Dart package that enhances the user experience by displaying a sleek terminal spinner for both sync and async operations.

preview

Features

  • 80+ predefined spinners accessible via CliSpinners
  • Easily change color of spinners and/or text with use of CliSpinnerColor helper
  • Define your own character sets (frames) and intervals for your custom spinners
  • Custom spinner text (w/ separate suffix and prefix options)
  • Start/stop methods
  • Stop and persist the spinner with custom text and symbol
  • Predefiend success, fail, warn and info methods (cross-platform compatible)

Getting started

TODO: List prerequisites and provide or point to information on how to start using the package.

Usage example

import 'dart:async';
import 'package:cli_spin/cli_spin.dart';

void main() {
  // Instantiate spinner
  final spinner = CliSpin(
    text: 'Loading data...',
    spinner: CliSpinners.line,
  ).start(); // Chaining methods

  Timer(Duration(milliseconds: 1000), () {
    // Change spinner color
    spinner.color = CliSpinnerColor.yellow; 
    
    // Change spinner text
    spinner.text = 'Still loading, please wait...';

    Timer(Duration(milliseconds: 1000), () {
      // Alias for `stopAndPersist(...)` method
      spinner.success('Data loaded successfully.');
    });
  });
}

Additional information

Inspired by the ora library written in Javascript.