text_scroller 0.0.2 copy "text_scroller: ^0.0.2" to clipboard
text_scroller: ^0.0.2 copied to clipboard

outdated

A highly customizable text scrolling widget. You can customize all the aspects.

example/lib/main.dart

import 'dart:async';
import 'dart:math';

import 'package:flutter/material.dart';
import 'package:text_scroller/text_scroller.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);
  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  final textScrollController = TextScrollController();
  int c = 0;
  @override
  void initState() {
    super.initState();

    Timer.periodic(Duration(milliseconds: 1500), (timer) {
      c++;
      if (c > 10 && c < 30) {
        if (Random().nextInt(5) != 0) return;

        textScrollController.add('Okay, then, This is no. $c');
      } else {
        if (Random().nextBool()) {
          textScrollController
              .add('So, what if the line is very long. This is no. $c');
        } else {
          textScrollController.add('So, This is no. $c');
        }
      }
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            TextScroller(
              controller: textScrollController,
              backgroundColor: Color(0x88cccccc),
              style: TextStyle(
                color: Colors.blueAccent,
                fontSize: 11,
              ),
            ),
          ],
        ),
      ),
    );
  }
}
8
likes
0
pub points
0%
popularity

Publisher

verified publishersonub.com

A highly customizable text scrolling widget. You can customize all the aspects.

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on text_scroller