Text marquee widget

Text marquee using widget

Installing

Add this line to the pubspec.yaml file below the dependencies:

dependencies:
  text_marquee_widget: ^0.0.1

Now to use, import this package into the desired file as follows:

import 'package:text_marquee_widget/text_marquee_widget.dart';

Basic example

Here is simple example you can use to create with this package:

TextMarqueeWidget(
    child: Text('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'),
)