first commit
This commit is contained in:
15
lib/common/widgets/typography_span.dart
Normal file
15
lib/common/widgets/typography_span.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
// Flutter imports:
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class TypographySpan extends TextSpan {
|
||||
///
|
||||
/// Упрощенный вариант [TextSpan]
|
||||
///
|
||||
const TypographySpan(
|
||||
this.text, {
|
||||
super.style,
|
||||
});
|
||||
|
||||
// ignore: annotate_overrides, overridden_fields
|
||||
final String text;
|
||||
}
|
||||
Reference in New Issue
Block a user