Update code

This commit is contained in:
2024-02-08 16:12:45 +08:00
parent 91144bf8f1
commit f47d3b8810
38 changed files with 554 additions and 211 deletions

View File

@@ -2,11 +2,11 @@ import "package:flutter/material.dart";
class FitText extends StatelessWidget {
const FitText({
Key? key,
super.key,
required this.texts,
this.style,
this.separator = " ",
}) : super(key: key);
});
final List<(String, int)> texts;
final TextStyle? style;
final String separator;