Skip to content

Instantly share code, notes, and snippets.

View rtybanana's full-sized avatar
🎯
Focusing

Rory Pinkney rtybanana

🎯
Focusing
View GitHub Profile
@rtybanana
rtybanana / marquee.dart
Created October 1, 2021 22:08
Marquee wrapper which only scrolls if the text is large enough
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;