This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:ui'; | |
import 'package:flutter/material.dart'; | |
import 'package:marquee/marquee.dart' as wrapped; | |
class Marquee extends StatelessWidget { | |
final String text; | |
final TextStyle? style; | |
final double? textScaleFactor; | |
final TextDirection textDirection; | |
final Axis scrollAxis; |