Skip to content

Bomsamdi/auto_scroll_text

Repository files navigation

AutoScrollText

Pub License: MIT pub points popularity

[AutoScrollText] is package for users which need a single line text widget without overlaping or TextOverflow.elipsis for long texts.

Installation

Include your package in your pubspec.yaml file:

dependencies:
  auto_scroll_text: ^0.0.6

Features

Android.Emulator.-.Pixel_XL_API_30_5554.2022-10-14.03-58-20.mp4

Usage

import 'package:auto_scroll_text/auto_scroll_text.dart';

Scaffold(
      appBar: AppBar(
        title: const Text("Horizontal Example"),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          crossAxisAlignment: CrossAxisAlignment.stretch,
          children: const <Widget>[
            AutoScrollText(
              "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.",
              textStyle: TextStyle(fontSize: 24),
            ),
          ],
        ),
      ),
    );

Example usage in /example folder.

Additional information

[AutoScrollText] is a solution when you need text widget for long texts without overlaping or overflow.elipsis [AutoScrollText] supports both directions [Axis.horizontal] and [Axis.vertical]