ticker 0.3.1
ticker: ^0.3.1 copied to clipboard
A Flutter widget for smooth, animated text transitions with scrolling effects, similar to financial tickers or departure boards.
import 'package:flutter/material.dart';
import 'package:ticker/ticker.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Ticker Example',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key});
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final GlobalKey<TickerWidgetState> _numberTickerKey = GlobalKey();
final GlobalKey<TickerWidgetState> _priceTickerKey = GlobalKey();
final GlobalKey<TickerWidgetState> _styledPriceTickerKey = GlobalKey();
final GlobalKey<TickerWidgetState> _textTickerKey = GlobalKey();
int _counter = 0;
String _lastCompleted = 'None';
void _incrementCounter() {
setState(() {
_counter++;
// Update number ticker
_numberTickerKey.currentState?.setText(_counter.toString());
// Update price ticker (normal)
final price = (_counter * 1.25).toStringAsFixed(2);
_priceTickerKey.currentState?.setText(price);
// Update styled price ticker
_styledPriceTickerKey.currentState?.setText(price);
// Update text ticker with alternating text
if (_counter % 2 == 0) {
_textTickerKey.currentState?.setText('FLUTTER');
} else {
_textTickerKey.currentState?.setText('TICKER');
}
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: const Text('Flutter Ticker Example'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
// Number ticker
Card(
margin: const EdgeInsets.all(16),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
children: [
Text(
'Number Ticker',
style: Theme.of(context).textTheme.titleMedium,
),
const SizedBox(height: 8),
TickerWidget(
key: _numberTickerKey,
initialValue: '0',
text: '0',
animateOnLoad: false, // No initial animation for this one
textSize: 30,
textColor: Colors.blue,
characterLists: [TickerUtils.provideNumberList()],
preferredScrollingDirection: ScrollingDirection.up,
onAnimationComplete: () {
setState(() {
_lastCompleted = 'Number Ticker';
});
},
),
const SizedBox(height: 4),
Text(
'Last completed: $_lastCompleted',
style: Theme.of(context).textTheme.bodySmall,
),
],
),
),
),
// Price ticker (normal)
Card(
margin: const EdgeInsets.all(16),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
children: [
Text(
'Price Ticker (Normal)',
style: Theme.of(context).textTheme.titleMedium,
),
const SizedBox(height: 8),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Text(
'\$',
style: TextStyle(
fontSize: 30,
fontWeight: FontWeight.bold,
),
),
TickerWidget(
key: _priceTickerKey,
initialValue: '0.00',
text: '0.00',
animateOnLoad: false, // No initial animation for this one
textSize: 30,
textColor: Colors.green,
characterLists: [
'${TickerUtils.provideNumberList()}.'
],
preferredScrollingDirection: ScrollingDirection.down,
),
],
),
],
),
),
),
// Price ticker (styled)
Card(
margin: const EdgeInsets.all(16),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
children: [
Text(
'Price Ticker (Styled)',
style: Theme.of(context).textTheme.titleMedium,
),
const SizedBox(height: 8),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Text(
'\$',
style: TextStyle(
fontSize: 30,
fontWeight: FontWeight.bold,
),
),
TickerWidget(
key: _styledPriceTickerKey,
initialValue: '0.00',
text: '0.00',
animateOnLoad: false,
textSize: 30,
// Different styles for different parts
wholeNumberStyle: const TextStyle(
color: Colors.blue,
fontWeight: FontWeight.bold,
),
decimalPointStyle: const TextStyle(
color: Colors.red,
fontWeight: FontWeight.bold,
),
decimalDigitsStyle: const TextStyle(
color: Colors.green,
fontWeight: FontWeight.normal,
fontStyle: FontStyle.italic,
),
characterLists: [
'${TickerUtils.provideNumberList()}.'
],
preferredScrollingDirection: ScrollingDirection.down,
),
],
),
],
),
),
),
// Text ticker
Card(
margin: const EdgeInsets.all(16),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
children: [
Text(
'Text Ticker',
style: Theme.of(context).textTheme.titleMedium,
),
const SizedBox(height: 8),
TickerWidget(
key: _textTickerKey,
initialValue: 'LOADING',
text: 'FLUTTER',
animateOnLoad: true, // Animate from LOADING to FLUTTER on first render
textSize: 30,
textColor: Colors.orange,
characterLists: [TickerUtils.provideAlphabeticalList()],
preferredScrollingDirection: ScrollingDirection.any,
),
],
),
),
),
],
),
),
floatingActionButton: Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
// Button to replay animations without changing values
FloatingActionButton(
onPressed: () {
// Demonstrate the animate() method by replaying animations
_numberTickerKey.currentState?.animate();
_priceTickerKey.currentState?.animate();
_styledPriceTickerKey.currentState?.animate();
_textTickerKey.currentState?.animate();
},
tooltip: 'Replay Animations',
heroTag: 'replay',
child: const Icon(Icons.replay),
),
const SizedBox(width: 16),
// Button to update values with animation
FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Update Values',
heroTag: 'update',
child: const Icon(Icons.refresh),
),
],
),
);
}
}