mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
14 lines
339 B
Dart
14 lines
339 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lunasea/core.dart';
|
|
|
|
class LunaTextSpan extends TextSpan {
|
|
const LunaTextSpan.extended({
|
|
required String? text,
|
|
}) : super(
|
|
text: text,
|
|
style: const TextStyle(
|
|
height: LunaBlock.SUBTITLE_HEIGHT / LunaUI.FONT_SIZE_H3,
|
|
),
|
|
);
|
|
}
|