MarqueeWidget
MarqueeWidget copied to clipboard
Results
4
MarqueeWidget issues
Sort by
recently updated
recently updated
newest added
class MarqueeWidget extends StatefulWidget{ final String text; final TextStyle textStyle; final RichText richText; ///滚动方向,水平或者垂直 final Axis scrollAxis; ///空白部分占控件的百分比 final double ratioOfBlankToScreen; MarqueeWidget({ this.text, this.textStyle, this.richText, this.scrollAxis:Axis.horizontal, this.ratioOfBlankToScreen:0.25, }) :assert((text!=null)||(null!=richText)); @override...
Hello,I want enable marquee effect when the text is larger then parent.Is it possible?